Skip to content

0.1.1

0.1.1 #19

Workflow file for this run

name: Build and Lint
on: [push]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# Make sure CI fails on all warnings, including Clippy lints
env:
RUSTFLAGS: "-D warnings"
CARGO_TERM_COLOR: always
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Rustfmt
run: cargo fmt -- --check
- name: Clippy
run: cargo clippy --all-targets --all-features
- name: Build
run: cargo build --all-targets