Skip to content

Bump actions/upload-artifact from 5 to 6 #2566

Bump actions/upload-artifact from 5 to 6

Bump actions/upload-artifact from 5 to 6 #2566

Workflow file for this run

name: fmt
permissions:
contents: read
on:
pull_request:
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
- '.github/workflows/web.yml'
- 'web/**'
push:
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
- '.github/workflows/web.yml'
- 'web/**'
branches:
- master
jobs:
fmt:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Update toolchain
run: rustup update --no-self-update stable && rustup default stable
- name: Install rustfmt
run: rustup component add rustfmt
- name: Check
run: cargo fmt --all -- --check