From fccc59653232d53beb103574017c0aad6c966c2a Mon Sep 17 00:00:00 2001 From: Jesse Hallett Date: Mon, 25 Mar 2024 15:17:35 -0700 Subject: [PATCH] remove build job from test workflow (#9) * remove build job from test workflow It's not actually helping cache performance * remove dependency on removed job --- .github/workflows/test.yml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0c1c3be5..e7b625df 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,31 +7,9 @@ on: - 'v*' pull_request: -# The build job caches build artifacts which avoids duplicating work between the -# unit and API tests. jobs: - build: - name: Build the connector - runs-on: ubuntu-latest - steps: - - name: Checkout 🛎️ - uses: actions/checkout@v3 - - - name: Install Nix ❄ - uses: DeterminateSystems/nix-installer-action@v4 - - - name: Link Cachix 🔌 - uses: cachix/cachix-action@v12 - with: - name: '${{ vars.CACHIX_CACHE_NAME }}' - authToken: '${{ secrets.CACHIX_CACHE_AUTH_TOKEN }}' - - - name: build the crate 🔨 - run: nix build --print-build-logs - unit_tests: name: Unit Tests - needs: build runs-on: ubuntu-latest steps: - name: Checkout 🛎️