Skip to content

Adapt to specification changes #7

Adapt to specification changes

Adapt to specification changes #7

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
fmt:
name: cargo fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: dtolnay/rust-toolchain@stable
- run: cargo fmt --all -- --check
clippy:
name: cargo clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: dtolnay/rust-toolchain@stable
- run: cargo clippy --all-features
- run: cargo clippy --no-default-features
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --all-features