Skip to content

Adapt to specification changes #16

Adapt to specification changes

Adapt to specification changes #16

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
fmt:
name: cargo fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- run: cargo fmt --all -- --check
clippy:
name: cargo clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- run: cargo clippy --all-features
- run: cargo clippy --no-default-features
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- run: cargo test --all-features