rollback on add working-directory #6
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: Flutter test build | |
on: | |
push: | |
paths: | |
- 'apps/mobile/**' | |
branches: [ "dev" ] | |
pull_request: | |
branches: [ "dev" ] | |
jobs: | |
build: | |
name: Pubget and test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repo | |
- uses: actions/checkout@v2 | |
- name: Setup Java | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Setup flutter | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.19.6' | |
- run: flutter pub get | |
- run: flutter test | |