Skip to content

chore(deps): update all non-major dependencies #247

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #247

Workflow file for this run

name: Check
permissions: "write-all"
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check:
timeout-minutes: 10
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt, clippy
- name: Rustfmt
run: cargo fmt --all -- --check
- name: Clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}