Skip to content

ci: configure lint

ci: configure lint #1

Workflow file for this run

name: Lint
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
# Replace pull_request with pull_request_target if you
# plan to use this action with forks, see the Limitations section
pull_request:
branches:
- main
# Down scope as necessary via https://docs.github.com/en/actions/security-guides/automatic-token-authentication#modifying-the-permissions-for-the-github_token
permissions:
checks: write
contents: write
jobs:
run-linters:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
name: Run linters
runs-on: ${{ matrix.os }}
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- run: rustup toolchain install nightly --profile minimal --component clippy rustfmt && rustup default nightly
name: Install Rust nightly toolchain
- uses: Swatinem/rust-cache@v2
name: Setup Rust cache
save-if: ${{ github.ref == 'refs/heads/main' }}

Check failure on line 35 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Lint

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 35, Col: 9): Unexpected value 'save-if'
# Install your linters here
- name: Run linters
uses: wearerequired/lint-action@v2
with:
rustfmt: true
clippy: true
auto_fix: true
commit_message: 'chore: apply linting fixes with ${linter}'