Skip to content

Clean up CI pipelines #1

Clean up CI pipelines

Clean up CI pipelines #1

Workflow file for this run

---
name: CI - Lint
on:
pull_request:
jobs:
lint:
name: PR Checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:

Check failure on line 11 in .github/workflows/ci-lint.yaml

View workflow run for this annotation

GitHub Actions / CI - Lint

Invalid workflow file

The workflow is not valid. .github/workflows/ci-lint.yaml (Line: 11, Col: 14): Unexpected value '' .github/workflows/ci-lint.yaml (Line: 12, Col: 9): Unexpected value 'submodules'
submodules: recursive
token: ${{ secrets.GH_TOKEN }}
- name: Install rust
run: |
rustup -V
rustup set profile minimal
rustup toolchain install stable
rustup show
- name: Check Formatting
run: cargo fmt --check --all
- name: Clippy
run: cargo clippy --check --workspace --all-features