Skip to content

0.1.1

0.1.1 #4

Workflow file for this run

name: Build and test
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt, clippy
- run: cargo fmt --check
- run: cargo check
- run: cargo clippy
- run: cargo build
- run: cargo test