Skip to content

Bump rust from 1.67-bullseye to 1.93-bullseye #24

Bump rust from 1.67-bullseye to 1.93-bullseye

Bump rust from 1.67-bullseye to 1.93-bullseye #24

Workflow file for this run

name: Format
on:
push:
branches: [main]
pull_request:
merge_group:
types: [checks_requested]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
format:
name: Check formatting
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Git checkout
uses: actions/checkout@v6
- name: Setup Rust
uses: ./.github/actions/setup-rust
with:
components: rustfmt
cache-prefix: fmt-v0
- name: Check format
run: make check-format