Skip to content

Update readme about the fix #48

Update readme about the fix

Update readme about the fix #48

Workflow file for this run

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