Skip to content

Commit fcf20ba

Browse files
SylfrenaLicenser
authored andcommitted
Log Rust version in workflow
Signed-off-by: Sumera Priyadarsini <[email protected]>
1 parent 0739a7a commit fcf20ba

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/pr-perf.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,21 @@ jobs:
55
name: run benchmark
66
runs-on: ubuntu-latest
77
permissions:
8-
contents: write
9-
pull-requests: write
10-
repository-projects: write
8+
contents: write
9+
pull-requests: write
10+
repository-projects: write
1111
steps:
1212
- uses: actions/checkout@v3
13+
14+
- name: Check Rust Version
15+
run: rustc --version
16+
1317
- uses: boa-dev/criterion-compare-action@v3 # https://github.com/marketplace/actions/criterion-compare-prs
1418
env:
15-
RUSTFLAGS: "-C target-cpu=native"
19+
RUSTFLAGS: "-C target-cpu=native"
1620
with:
1721
# Optional. Compare only this benchmark target
1822
benchName: "to_tape"
1923
features: "bench-all"
2024
# Needed. The name of the branch to compare with. This default uses the branch which is being pulled against
21-
branchName: ${{ github.base_ref }}
25+
branchName: ${{ github.base_ref }}

0 commit comments

Comments
 (0)