Skip to content

chore: release v0.2.7 #79

chore: release v0.2.7

chore: release v0.2.7 #79

Workflow file for this run

name: main
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt, clippy
- run: cargo clippy --all-targets --all-features -- -D warnings
- run: cargo fmt --check --all
build:
runs-on: ubuntu-latest
needs:
- lint
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- run: cargo build
- run: cargo test