Skip to content

Commit

Permalink
Clippy on push to main.
Browse files Browse the repository at this point in the history
  • Loading branch information
samscott89 committed Nov 29, 2020
1 parent 3ad996f commit 3921c89
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,18 @@ jobs:
command: fmt
args: --all -- --check
- name: Check clippy
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-targets -- -D warnings
- name: Check clippy
if: ${{ github.event_name != 'push' || github.ref != 'refs/heads/main' }}
uses: actions-rs/clippy-check@v1
with:
token: 0000000000000000000000000000000000000000
args: --all-targets -- -D warnings


test:
name: Run tests
Expand Down

1 comment on commit 3921c89

@github-actions
Copy link

Choose a reason for hiding this comment

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

Rust Benchmark

Benchmark suite Current: 3921c89 Previous: 3ad996f Ratio
pasta_hash 81801133 ns/iter (± 2672633) 69471229 ns/iter (± 4144797) 1.18
pasta_hash_dyn_alg 83315086 ns/iter (± 2358697) 68674805 ns/iter (± 3640681) 1.21
argon2/native_1 3162687 ns/iter (± 146603) 2860595 ns/iter (± 126688) 1.11
argon2/native_4 2751785 ns/iter (± 205058) 2385612 ns/iter (± 88992) 1.15
argon2/ffi_1 2951305 ns/iter (± 152492) 2638763 ns/iter (± 105984) 1.12
argon2/ffi_4 3573271 ns/iter (± 295086) 3120916 ns/iter (± 284687) 1.14
argon2/pasta_1 3136724 ns/iter (± 109118) 2702820 ns/iter (± 120760) 1.16
argon2/pasta_4 2796365 ns/iter (± 231640) 2372831 ns/iter (± 96698) 1.18

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

Please sign in to comment.