Skip to content

Prepare 0.4.0 release #57

Prepare 0.4.0 release

Prepare 0.4.0 release #57

Workflow file for this run

name: build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt update && sudo apt install -y cmake clang-15
- uses: dtolnay/rust-toolchain@stable
- run: rustup component add rustfmt clippy
- uses: Swatinem/rust-cache@v2
- run: cargo build --all-features
- run: cargo test --all-features
- run: cargo check # default features
- run: cargo check --no-default-features
- run: cargo fmt --all -- --check
- run: cargo clippy --all-features -- -D warnings