From f20e65b0d80c6cd718a07f97fd044565f32de2de Mon Sep 17 00:00:00 2001 From: islam <2553451+qalandarov@users.noreply.github.com> Date: Fri, 10 Apr 2026 23:59:18 +0100 Subject: [PATCH] =?UTF-8?q?Run=20local=20packages=E2=80=99=20tests=20as=20?= =?UTF-8?q?well=20on=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/swift-tests.yml | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/.github/workflows/swift-tests.yml b/.github/workflows/swift-tests.yml index 00cfc100..6d6b600c 100644 --- a/.github/workflows/swift-tests.yml +++ b/.github/workflows/swift-tests.yml @@ -8,9 +8,18 @@ on: jobs: test: - name: Run Swift Tests + name: Run Swift Tests (${{ matrix.name }}) runs-on: macos-latest + strategy: + fail-fast: false # Don't cancel other matrix jobs when one fails + matrix: + include: + - name: app + path: . + - name: BitLogger + path: localPackages/BitLogger + steps: - name: Checkout code uses: actions/checkout@v5 @@ -21,14 +30,11 @@ jobs: - name: Cache build artifacts uses: actions/cache@v4 with: - path: .build - key: ${{ runner.os }}-build-${{ hashFiles('**/*.swift', '**/Package.resolved') }} + path: ${{ matrix.path }}/.build + key: ${{ runner.os }}-${{ matrix.name }}-${{ hashFiles(format('{0}/**/*.swift', matrix.path), format('{0}/**/Package.resolved', matrix.path)) }} restore-keys: | - ${{ runner.os }}-build-${{ hashFiles('**/Package.resolved') }} - ${{ runner.os }}-build- - - - name: Build the package - run: swift build + ${{ runner.os }}-${{ matrix.name }}-${{ hashFiles(format('{0}/**/Package.resolved', matrix.path)) }} + ${{ runner.os }}-${{ matrix.name }}- - name: Run Tests - run: swift test --parallel + run: swift test --parallel --quiet --package-path ${{ matrix.path }}