Skip to content

WIP

WIP #19

Workflow file for this run

on: [push, pull_request]
name: build
jobs:
lint:
name: Format and Clippy
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install Rust stable toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.81.0 # We want to use a modern version of rust for better lints
components: rustfmt, clippy
- name: Run cargo fmt
run: cargo fmt --all -- --check
- name: Run cargo clippy
run: cargo clippy --all -- -D warnings
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install Rust stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.32 # Ensure that tests past using MSRV
override: true
- name: Run cargo test
run: cargo test
- name: Run cargo test for no-std
run: cargo test --no-default-feature