Bump actions/checkout from 3df4ab11eba7bda6032a0b82a6bb43b11571feac to 163217dfcd28294438ea1c1c149cfaf66eec283e #22
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rustfmt check | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
jobs: | |
quick_check: | |
strategy: | |
matrix: | |
os: ["ubuntu-latest"] | |
runs-on: ${{ matrix.os }} | |
container: | |
image: paritytech/ci-unified:bullseye-1.70.0-2023-05-23-v20230706 | |
steps: | |
- uses: actions/checkout@163217dfcd28294438ea1c1c149cfaf66eec283e # v4.0.0 | |
- name: Cargo fmt | |
run: cargo +nightly fmt --all -- --check |