Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewnitschke-wk committed Aug 6, 2024
1 parent fb4548c commit 0014710
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,12 @@ jobs:
consumer:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
consumer: [
{ repo: "Workiva/over_react", ref: "master"},
{ repo: "Workiva/w_module", ref: "master"},
{ repo: "rrousselGit/provider", ref: "master"},
{ repo: "Workiva/over_react" },
{ repo: "Workiva/w_module" },
{ repo: "rrousselGit/provider", packagePath: "/provider/packages/provider" },
{ repo: "dart-lang/args", ref: "v2.4.2" } # master requires dart 3
]

Expand All @@ -93,10 +94,10 @@ jobs:
- uses: actions/checkout@v4
with:
repository: ${{ matrix.consumer.repo }}
path: ${{ matrix.consumer.repo }}
ref: ${{ matrix.consumer.ref }}
path: ${{ matrix.consumer.repo}}
ref: ${{ matrix.consumer.ref || 'master' }}
- run: dart pub get
working-directory: ${{ matrix.consumer.repo }}

- run: |
dart run scip_dart ./${{ matrix.consumer.repo }} || exit 1
dart run scip_dart ./${{ matrix.consumer.repo }}${{ matrix.consumer.packagePath || '' }} || exit 1

0 comments on commit 0014710

Please sign in to comment.