Skip to content

Commit

Permalink
adjust package path
Browse files Browse the repository at this point in the history
  • Loading branch information
devoncarew committed Oct 4, 2024
1 parent a38c3eb commit 79ef391
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/file.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:
sdk: dev

- name: Install ${{ matrix.package }} dependencies
working-directory: packages/${{ matrix.package }}
working-directory: pkgs/${{ matrix.package }}
run: dart pub get

- name: Verify formatting in ${{ matrix.package }}
working-directory: packages/${{ matrix.package }}
working-directory: pkgs/${{ matrix.package }}
run: dart format --output=none --set-exit-if-changed .

- name: Analyze package ${{ matrix.package }} source
working-directory: packages/${{ matrix.package }}
working-directory: pkgs/${{ matrix.package }}
run: dart analyze --fatal-infos

test:
Expand All @@ -58,9 +58,9 @@ jobs:
sdk: ${{ matrix.sdk }}

- name: Install ${{ matrix.package }} dependencies
working-directory: packages/${{ matrix.package }}
working-directory: pkgs/${{ matrix.package }}
run: dart pub get

- name: Run ${{ matrix.package }} Tests
working-directory: packages/${{ matrix.package }}
working-directory: pkgs/${{ matrix.package }}
run: dart pub run test -j1

0 comments on commit 79ef391

Please sign in to comment.