Bump archive from 3.3.0 to 3.3.8 #75
Workflow file for this run
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 Android PR | |
on: | |
pull_request: | |
paths: | |
- 'android/**' | |
- 'lib/**' | |
- 'lang/**' | |
- 'fonts/**' | |
- 'pubspec*' | |
- 'pigeons/**' | |
- 'test/**' | |
- '.github/workflows/pull-android.yml' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '12.x' | |
- uses: dart-lang/[email protected] | |
- run: dart pub global activate fvm | |
- run: fvm install | |
- run: fvm flutter pub get | |
- run: fvm flutter analyze | |
continue-on-error: true | |
- name: Flutter test | |
continue-on-error: true | |
run: fvm flutter test | |
- run: fvm flutter build apk --debug | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Upload golden failures | |
uses: actions/upload-artifact@v1 | |
with: | |
name: goldens-failures | |
path: test/components/failures/ |