Skip to content

Commit

Permalink
Fix ESLint results path
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasWanke committed Jul 14, 2023
1 parent a226bb5 commit 0c4863f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/compiler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ jobs:
- uses: Swatinem/[email protected]

# Compiler
- name: "Compiler: clippy"
- name: 'Compiler: clippy'
run: cargo clippy -- --deny warnings
- name: "Compiler: test"
- name: 'Compiler: test'
run: cargo test --workspace
- name: "Compiler: fmt"
- name: 'Compiler: fmt'
run: cargo fmt --check

# Core
- name: "Core: run"
- name: 'Core: run'
run: cargo run --release -- check packages/Core/_.candy

# fuzzing:
Expand Down Expand Up @@ -105,5 +105,5 @@ jobs:

- uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: eslint-results.sarif
sarif_file: vscode_extension/eslint-results.sarif
wait-for-processing: true

1 comment on commit 0c4863f

@jwbot
Copy link
Collaborator

@jwbot jwbot commented on 0c4863f Jul 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Compiler

Benchmark suite Current: 0c4863f Previous: d26ae3e Ratio
Time: Compiler/hello_world 21821041 ns/iter (± 1651189) 17256140 ns/iter (± 1510435) 1.26
Time: Compiler/fibonacci 179194672 ns/iter (± 6058492) 151936262 ns/iter (± 4910412) 1.18
Time: VM Runtime/hello_world 65350 ns/iter (± 24451) 50750 ns/iter (± 19063) 1.29
Time: VM Runtime/fibonacci/15 636868729 ns/iter (± 28600352) 507572835 ns/iter (± 21723012) 1.25
Time: VM Runtime/PLB/binarytrees/6 2878930759 ns/iter (± 102982421) 2320602016 ns/iter (± 51075416) 1.24

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.