Skip to content

fix: pin rustc 1.72 #681

fix: pin rustc 1.72

fix: pin rustc 1.72 #681

Workflow file for this run

name: Formatting
on:
- pull_request
jobs:
format:
strategy:
matrix:
os:
# - ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: recursive
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check