Skip to content

Prepare for v0.4.0 Release #10

Prepare for v0.4.0 Release

Prepare for v0.4.0 Release #10

Workflow file for this run

name: Check and build rust library
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
check-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Stable with rustfmt and clippy
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.63
components: rustfmt, clippy
- run: cargo fmt -- --check
- run: cargo build
- run: cargo test
- run: cargo clippy -- -D warnings