Skip to content

Bump to 0.8.0

Bump to 0.8.0 #27

Workflow file for this run

on:
push:
pull_request:
name: Clippy check
jobs:
clippy_check:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
changelog_generator/target
key: ${{ runner.os }}-clippy_cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-clippy_cargo-
- run: rustup component add clippy
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features