Skip to content

update example config #83

update example config

update example config #83

Workflow file for this run

name: Rust
on:
push:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43 # v2
- name: Format
run: cargo fmt --all --check
- name: Lint
run: cargo clippy -- -D warnings
- name: Build
run: cargo build
- name: Test
run: cargo test