Skip to content

windows-reactor module privacy convention #4778

windows-reactor module privacy convention

windows-reactor module privacy convention #4778

Workflow file for this run

name: fmt
permissions:
contents: read
on:
pull_request:
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
- '.github/workflows/web.yml'
- 'crates/libs/rdl/rdl.md'
- 'docs/**'
- 'web/**'
push:
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
- '.github/workflows/web.yml'
- 'crates/libs/rdl/rdl.md'
- 'docs/**'
- 'web/**'
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
jobs:
fmt:
runs-on: ubuntu-24.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
- uses: Swatinem/rust-cache@v2
- name: Check
run: cargo fmt --all -- --check