Skip to content

Commit

Permalink
try to fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
wojciechos committed Dec 13, 2024
1 parent 02d963d commit af64ebe
Showing 1 changed file with 19 additions and 5 deletions.
24 changes: 19 additions & 5 deletions .github/workflows/juno-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,29 @@ jobs:
VM_DEBUG: true
steps:
- uses: actions/checkout@v4

# Add Go dependency caching
- uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Set up go
uses: actions/setup-go@v5
with:
go-version-file: go.mod

# Add explicit dependency resolution steps
- name: Download and verify dependencies
run: |
go mod download
go mod verify
go mod tidy
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
Expand Down Expand Up @@ -54,11 +73,6 @@ jobs:
if: matrix.os != 'ubuntu-latest'
run: make test

# Tests with race condition detector are flaky; we're disabling them for now
# - name: Tests (Race Detection)
# if: matrix.os == 'ubuntu-latest'
# run: make test-race

- name: Upload coverage to Codecov
if: matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v5
Expand Down

0 comments on commit af64ebe

Please sign in to comment.