Skip to content

fix(ci): run on v2 branch #36

fix(ci): run on v2 branch

fix(ci): run on v2 branch #36

Workflow file for this run

name: Format
on:
push:
branches:
- v2
pull_request:
branches:
- v2
jobs:
format:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Install rustfmt with nightly toolchain
uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- name: Run formatter
run: cargo fmt --manifest-path=Cargo.toml --all -- --check