Skip to content

v1.0.0

v1.0.0 #9

Workflow file for this run

name: main
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: main-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
rust-version: [stable, beta, nightly]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust-version }}
components: clippy, rustfmt
default: true
- run: cargo fmt -- --check
- run: cargo clippy
- run: cargo test