This repository has been archived by the owner on Jul 18, 2024. It is now read-only.
chore: updated th-th, ja-jp, uwu #47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "fastlane/**" | |
- "**.md" | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- "fastlane/**" | |
- "**.md" | |
jobs: | |
check: | |
name: Analyze and test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
cache: true | |
- name: Install grinder | |
run: dart pub global activate grinder | |
- name: Get dependencies | |
run: | | |
flutter clean | |
flutter pub get | |
- name: Run code generators | |
run: grind gencode genlang | |
- name: Check code formatting | |
run: grind chkfmt | |
- name: Analyze code | |
run: grind analyze | |
- name: Perform testing | |
run: grind test |