Skip to content

Commit

Permalink
Update and rename pylint.yml to ruff.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmasBox authored Nov 22, 2024
1 parent a493beb commit fcff3a8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 23 deletions.
23 changes: 0 additions & 23 deletions .github/workflows/pylint.yml

This file was deleted.

18 changes: 18 additions & 0 deletions .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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
# Update output format to enable automatic inline annotations.
- name: Run Ruff
run: ruff check --output-format=github .

0 comments on commit fcff3a8

Please sign in to comment.