-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #91 from hamirmahal/fix/usage-of-node12-in-actions…
…/checkout fix: usage of `node12` in `actions/checkout`
- Loading branch information
Showing
1 changed file
with
2 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
on: [push, pull_request] | ||
|
||
|
||
name: Test | ||
|
||
jobs: | ||
|
@@ -9,7 +8,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install | ||
uses: actions-rs/toolchain@v1 | ||
|
@@ -23,7 +22,7 @@ jobs: | |
command: test | ||
args: --manifest-path crates/dash_vm/Cargo.toml # no --all-features because jit | ||
- name: Benchmark VM | ||
run: eval $(cargo test --release --benches -p dash_vm |& grep -o -P 'target/release/deps/full-[^\)]+') --bench --output-format bencher | tee output.txt | ||
run: eval $(cargo test --release --benches -p dash_vm |& grep -o -P 'target/release/deps/full-[^\)]+') --bench --output-format bencher | tee output.txt | ||
- name: Store output | ||
if: github.ref == 'refs/heads/master' | ||
uses: benchmark-action/[email protected] | ||
|