Skip to content

Assign specific jobs to dedicated workers #145

Assign specific jobs to dedicated workers

Assign specific jobs to dedicated workers #145

Workflow file for this run

on:
push:
branches:
- main
pull_request:
name: fmt
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: minimal
override: true
components: rustfmt
- name: Run cargo fmt --check
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check