Skip to content

Commit

Permalink
Merge pull request #91 from hamirmahal/fix/usage-of-node12-in-actions…
Browse files Browse the repository at this point in the history
…/checkout

fix: usage of `node12` in `actions/checkout`
  • Loading branch information
y21 authored Jun 10, 2024
2 parents d463327 + 7090e05 commit c74fe21
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
on: [push, pull_request]


name: Test

jobs:
Expand All @@ -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
Expand All @@ -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]
Expand Down

0 comments on commit c74fe21

Please sign in to comment.