Skip to content

Commit

Permalink
ci: initial support
Browse files Browse the repository at this point in the history
added ruff
  • Loading branch information
THEBAULT Julien committed Aug 23, 2024
1 parent 5d99ebc commit c773199
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff
run: ruff check --output-format=github .

0 comments on commit c773199

Please sign in to comment.