Bump version to 0.2.1 #25
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: Check | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'main' | |
- 'build/*' | |
paths-ignore: | |
- '**.md' | |
env: | |
FLUTTER_VERSION: 3.10.5 | |
jobs: | |
analyze: | |
name: Run flutter analyze | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '${{ env.FLUTTER_VERSION }}' | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Run flutter analyze | |
run: flutter analyze | |
check-translations: | |
name: Check translations | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '${{ env.FLUTTER_VERSION }}' | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Check translations | |
run: ./scripts/check-translations.sh |