Merge pull request #11 from deandreamatias/dependabot/bundler/android… #29
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: Build and test | |
on: | |
push: | |
jobs: | |
build: | |
name: Build and test | |
runs-on: macos-latest | |
steps: | |
- name: Get repository | |
uses: actions/checkout@v4 | |
- name: Configure enviroment | |
env: | |
ENV_PROD_BASE64: ${{ secrets.ENV_PROD_BASE64 }} | |
ENV_DEV_BASE64: ${{ secrets.ENV_DEV_BASE64 }} | |
run: | | |
echo $ENV_PROD_BASE64 | base64 --decode > .env/prod.json | |
echo $ENV_DEV_BASE64 | base64 --decode > .env/dev.json | |
- name: Get flutter version | |
uses: kuhnroyal/flutter-fvm-config-action@v2 | |
id: fvm-config-action | |
with: | |
path: '.fvmrc' | |
- name: Install Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ steps.fvm-config-action.outputs.FLUTTER_VERSION }} | |
cache: true | |
cache-key: 'flutter-:os:-:version:-:arch:' | |
cache-path: '${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:' | |
- name: Show flutter info | |
run: flutter doctor | |
- name: Install dependencies | |
run: sh tool/setup.sh | |
- name: Verify formated files | |
run: dart format $(find . -name "*.dart" -not -wholename "**/*.g.dart") --set-exit-if-changed | |
- name: Analyze code | |
run: flutter analyze | |
- name: Test | |
run: sh tool/unit-test.sh prod |