Skip to content

chore: release v0.4.1 #72

chore: release v0.4.1

chore: release v0.4.1 #72

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Build, check, and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
filter: blob:none
token: ${{ secrets.RELEASE_PLZ_TOKEN }}
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- uses: taiki-e/install-action@v2
with:
tool: cargo-hack,just
- uses: Swatinem/rust-cache@v2
- run: just build
- run: just check
- run: just fmt --check
id: fmt
- run: just fmt
if: failure()
- uses: stefanzweifel/git-auto-commit-action@v5
if: failure()
- run: just test