Skip to content

build(deps): bump softprops/action-gh-release from 4634c16e79c963813287e889244c50009e7f0981 to 69320dbe05506a9a39fc8ae11030b214ec2d1f87 #1638

build(deps): bump softprops/action-gh-release from 4634c16e79c963813287e889244c50009e7f0981 to 69320dbe05506a9a39fc8ae11030b214ec2d1f87

build(deps): bump softprops/action-gh-release from 4634c16e79c963813287e889244c50009e7f0981 to 69320dbe05506a9a39fc8ae11030b214ec2d1f87 #1638

Workflow file for this run

name: Workspace
on:
pull_request: {}
push:
branches: main
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
- uses: actions-rs/cargo@v1
with:
command: check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.71.0 # MSRV of 1.67 causes false positives
components: clippy
override: true
profile: minimal
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --all --all-features -- -D warnings
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
override: true
profile: minimal
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check