Skip to content

Commit

Permalink
Actually need build output for one of the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
RebeccaMahany committed Dec 13, 2024
1 parent 95333b6 commit 8b9acbf
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ jobs:

launcher_test:
name: test
needs: build # a desktop runner test requires a build to exist
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -133,6 +134,13 @@ jobs:
check-latest: true
cache: false

- name: cache restore build output
uses: actions/cache/restore@v4
with:
path: ./build
key: ${{ runner.os }}-${{ github.run_id }}
enableCrossOsArchive: true

- name: Test
run: make test

Expand Down

0 comments on commit 8b9acbf

Please sign in to comment.