Skip to content

build(deps): bump once_cell from 1.20.0 to 1.20.1 (#1231) #904

build(deps): bump once_cell from 1.20.0 to 1.20.1 (#1231)

build(deps): bump once_cell from 1.20.0 to 1.20.1 (#1231) #904

Workflow file for this run

name: Workspace
on:
pull_request: {}
push:
branches: main
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- 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@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.81.0 # pinned to prevent breakages
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@v2
- 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