Skip to content

Update softprops/action-gh-release action to v2 #68

Update softprops/action-gh-release action to v2

Update softprops/action-gh-release action to v2 #68

Workflow file for this run

name: formatting
on:
pull_request:
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.69.0
components: rustfmt
- name: cargo fmt
run: cargo fmt --all -- --check
clippy:
name: cargo clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.84.0
components: clippy
- run: cargo clippy -- --deny warnings