1
Fork 0
This repository has been archived on 2026-08-15. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
2026SEL3-project-Brittle_St.../.github/workflows/lint.yml

21 lines
386 B
YAML

name: Lint
on:
pull_request:
branches:
- main
- dev
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Ruff check
uses: astral-sh/ruff-action@v1
with:
args: "check"
- name: Run Ruff format check
uses: astral-sh/ruff-action@v1
with:
args: "format --check"