Add link to new article #50
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: test-my-app | |
on: [push, workflow_dispatch] | |
jobs: | |
drive: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: subosito/flutter-action@v1 | |
- name: Write TMDB_KEY to .env | |
run: echo 'TMDB_KEY={{ secrets.TMDB_KEY }}' > .env | |
- name: Get packages | |
run: flutter pub get | |
- name: Run code generator | |
run: flutter pub run build_runner build --delete-conflicting-outputs | |
- name: Run tests | |
run: flutter test |