Skip to content

Include Cargo.lock

Include Cargo.lock #64

Workflow file for this run

name: CI
on: push
env:
CARGO_TERM_COLOR: always
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Don't forget to update `Cargo.toml`
- name: Setup rust 1.74.0
run: rustup toolchain install 1.74.0 --profile minimal --no-self-update
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Clippy
run: cargo clippy --verbose