Skip to content
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

chore: updated th-th, ja-jp, uwu

chore: updated th-th, ja-jp, uwu #47

Workflow file for this run

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