We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fda52b commit 94ca2eeCopy full SHA for 94ca2ee
1 file changed
.github/workflows/ci.yml
@@ -83,10 +83,17 @@ jobs:
83
- uses: ./.github/actions/rust-install
84
- run: cargo build --release
85
86
- - run: which -a go && go env GOROOT
+ - name: Probe go resolution with brew bin prepended
87
+ run: |
88
+ export PATH="/opt/homebrew/bin:$PATH"
89
+ echo "PATH=$PATH"
90
+ which -a go
91
+ go env GOROOT || echo "go env GOROOT failed with exit $?"
92
93
- name: Run the benchmarks
94
uses: CodSpeedHQ/action@main
95
+ env:
96
+ PATH: /opt/homebrew/bin:${{ env.PATH }}
97
with:
98
run: cargo r --release --manifest-path ../go-runner/Cargo.toml -- test -bench=BenchmarkFibonacciDarwin example -benchtime=500ms
99
working-directory: example
0 commit comments