Skip to content

Merge pull request #4 from ahkohd/renovate/actions-cache-3.x #11

Merge pull request #4 from ahkohd/renovate/actions-cache-3.x

Merge pull request #4 from ahkohd/renovate/actions-cache-3.x #11

Workflow file for this run

{{{{raw}}}}

Check failure on line 1 in .github/workflows/format.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/format.yml

Invalid workflow file

You have an error in your yaml syntax on line 1
name: Format
on:
push:
branches:
- main
pull_request:
branches:
- main
- dev
jobs:
format:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Install rustfmt with nightly toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --manifest-path=Cargo.toml --all -- --check
{{{{/raw}}}}