Implement standard traits for pointers and bump version to 0.2.0 #9
Workflow file for this run
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: Test CIRC | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install Rust nightly toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
components: rustfmt, clippy | |
- name: Install cargo-audit | |
run: cargo install cargo-audit | |
- name: Run checks | |
run: | | |
cargo check --verbose | |
cargo fmt -- --check | |
cargo clippy -- -D warnings | |
cargo audit | |
- name: Run tests | |
run: | | |
cargo test | |
cargo test --release |