Skip to content

chore(deps): bump pnpm/action-setup from 4.1.0 to 4.2.0 (#314) #1597

chore(deps): bump pnpm/action-setup from 4.1.0 to 4.2.0 (#314)

chore(deps): bump pnpm/action-setup from 4.1.0 to 4.2.0 (#314) #1597

Workflow file for this run

name: Code formatting
on:
- push
- pull_request
jobs:
fmt_check:
name: Fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install Rust
shell: bash
run: |
installer=$(mktemp -d)/install-rustup
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > $installer
bash $installer --default-toolchain $(cat rust-toolchain) --component rustfmt -y
- name: Check code formatting
run: cargo fmt -- --check