Skip to content

Fix CI cwd

Fix CI cwd #16

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@stable
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
- run: cargo fmt --check
- run: cargo clippy --all-features -- --no-deps -Dwarnings