Skip to content

Bump versions

Bump versions #30

Workflow file for this run

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