Skip to content

Readme changes.

Readme changes. #4

Workflow file for this run

name: CI
on:
pull_request:
push: { branches: [main] }
env:
RUSTFLAGS: -Dwarnings
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --all-features
fmt:
name: cargo fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo fmt --check