Skip to content
This repository has been archived by the owner on Feb 11, 2025. It is now read-only.

Commit

Permalink
Add workflow to lint codebase using ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
johannaengland committed Oct 22, 2024
1 parent b2bf059 commit 20d8fd6
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Lint codebase

on:
push:
branches: main
pull_request:

jobs:
ruff:
runs-on: ubuntu-latest
name: Critical lint Python
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v1
with:
changed-files: 'true'

0 comments on commit 20d8fd6

Please sign in to comment.