From 79ef391bdd062717943bb47fca79c35095968268 Mon Sep 17 00:00:00 2001 From: Devon Carew Date: Fri, 4 Oct 2024 12:59:45 -0700 Subject: [PATCH] adjust package path --- .github/workflows/file.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/file.yml b/.github/workflows/file.yml index 201288d46..06ce285d4 100644 --- a/.github/workflows/file.yml +++ b/.github/workflows/file.yml @@ -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: @@ -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