Skip to content

chore: version 0.2.0 and auto-publish workflow #5

chore: version 0.2.0 and auto-publish workflow

chore: version 0.2.0 and auto-publish workflow #5

Workflow file for this run

name: CI
on: [push, pull_request]
env:
CARGO_TERM_COLOR: never
jobs:
validate:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: fmt
run: cargo fmt --all -- --check
- name: clippy
run: cargo clippy --workspace --all-targets -- -D warnings
- name: check
run: cargo check --workspace --all-targets