Skip to content

update readme

update readme #4

Workflow file for this run

name: Build
on:
push:
branches: [ main ] # only run on branches
tags-ignore: # skip all tags
- "**"
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
rust: [stable, beta]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- name: Install Rust (${{ matrix.rust }})
uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{ matrix.rust }}
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2.9.1
- name: Format check
run: cargo fmt --check
- name: Clippy
run: cargo clippy -- -D warnings
- run: cargo build
- run: cargo test