Fix DPF PRG key num #37
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
name: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: rustfmt, clippy | |
- name: Format | |
run: cargo fmt --check | |
- name: Lint | |
run: cargo clippy --no-deps -- -Dwarnings | |
- name: Test with multithreading | |
run: cargo test | |
- name: Test without multithreading | |
run: cargo test --no-default-features -F prg |