Skip to content

Commit

Permalink
Simplify quality-flutter matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
EduardGomezEscandell committed Oct 3, 2023
1 parent 0f08743 commit 9c4532a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu, windows]
package: ["gui/packages/p4w_ms_store", "gui/packages/ubuntupro"]
package: ["p4w_ms_store", "ubuntupro"]
runs-on: ${{ matrix.os }}-latest
steps:
- name: Set up git
Expand All @@ -105,20 +105,20 @@ jobs:
uses: actions/checkout@v4
- name: Set up Go
# We need to set up Go so that the agent can be built for the end-to-end tests
if: matrix.package == 'gui/packages/ubuntupro'
if: matrix.package == 'ubuntupro'
uses: actions/setup-go@v4
with:
go-version-file: windows-agent/go.mod
- name: Flutter QA
uses: ./.github/actions/flutter-qa/
with:
flutter-version: ${{ env.flutter-version }}
package-dir: '${{ matrix.package }}'
run-build-runner: ${{ contains(matrix.package, 'ubuntupro') }}
package-dir: gui/packages/${{ matrix.package }}
run-build-runner: ${{ matrix.package == 'ubuntupro' }}
- name: Ensure module files are up to date
uses: EduardGomezEscandell/desktop-engineering/gh-actions/common/has-diff@dont-use-sudo
with:
working-directory: ${{ matrix.package }}
working-directory: gui/packages/${{ matrix.package }}
paths-to-ignore: 'pubspec.lock'
fail-on-diff: true

Expand Down

0 comments on commit 9c4532a

Please sign in to comment.