Fix: navigateing to a url from external source opened the initial rou… #11
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: Run tests | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
branches: [dev, main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: "12.x" | |
- uses: subosito/flutter-action@v2 | |
with: | |
# flutter-version: "3.0.0" | |
channel: stable | |
- name: Get dependencies | |
run: flutter pub get | |
- name: Run tests | |
run: flutter test | |
- name: Dry pubilsh | |
run: dart pub publish --dry-run |