Fix copy_from_slice len mismatch #28
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-dcf: | |
name: Test DCF | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: dcf | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: rustfmt, clippy | |
- name: Test with multithreading | |
run: cargo test -F prg | |
- name: Test without multithreading | |
run: cargo test -F prg --no-default-features | |
test-dpf: | |
name: Test DPF | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: dpf-fss | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: rustfmt, clippy | |
- name: Test with multithreading | |
run: cargo test -F prg | |
- name: Test without multithreading | |
run: cargo test -F prg --no-default-features | |
test-misc: | |
name: Test misc stuff | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: rustfmt, clippy | |
- run: cargo fmt --check | |
- run: cargo clippy --all-features -- --no-deps -Dwarnings |