Skip to content

Initial Commit

Initial Commit #1

Workflow file for this run

name: 'Format Check'
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
permissions:
contents: read
pull-requests: read
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
check-format:
runs-on: ubuntu-latest
steps:
- name: Checkout & Setup Toolchain
uses: actions/checkout@v4
uses: actions-rust-lang/setup-rust-toolchain@v1

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

View workflow run for this annotation

GitHub Actions / Format Check

Invalid workflow file

The workflow is not valid. .github/workflows/format.yml (Line: 27, Col: 9): 'uses' is already defined
- name: Run Formatter
run: cargo fmt --check