Bump go_router from 14.6.0 to 14.6.2 #123
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: Pull Request | |
on: [ pull_request ] | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-flutter | |
- run: flutter analyze | |
- run: dart format -o none --set-exit-if-changed . | |
test: | |
needs: analyze | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-flutter | |
- run: flutter test | |
test-ui: | |
needs: analyze | |
strategy: | |
matrix: | |
include: | |
- platform: linux | |
runs-on: ubuntu-latest | |
before-test: sudo apt update && sudo apt install -y ninja-build libgtk-3-dev | |
before-run: | | |
export DISPLAY=:99 | |
sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 & | |
#- platform: macos | |
# runs-on: macos-latest | |
#- platform: windows | |
# runs-on: windows-latest | |
runs-on: ${{ matrix.runs-on }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-flutter | |
- if: ${{ matrix.before-test }} | |
run: ${{ matrix.before-test }} | |
- name: Run integration_test | |
run: | | |
${{ matrix.before-run }} | |
flutter test integration_test/test_suite.dart -d ${{ matrix.platform }} |