Skip to content

Group all GH Actions updates #100

Group all GH Actions updates

Group all GH Actions updates #100

Workflow file for this run

name: Format
on:
push:
branches: ["main"]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
rustfmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- name: Install nightly Rust
run: |
rustup toolchain install nightly --profile minimal --component rustfmt --allow-downgrade
rustup default nightly
- name: Checkout
uses: actions/checkout@v4
- name: Run Rustfmt
run: cargo fmt --check
taplo:
name: Taplo
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: taiki-e/install-action@v2
with:
tool: taplo-cli
- name: Run Taplo
run: taplo fmt --check