From 4822fa19fa25d0d8fd13e54cf3a1e39e31a4833e Mon Sep 17 00:00:00 2001 From: DSilva27 Date: Mon, 12 Aug 2024 13:12:23 -0400 Subject: [PATCH] add linting check --- .github/workflows/ruff.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/ruff.yml diff --git a/.github/workflows/ruff.yml b/.github/workflows/ruff.yml new file mode 100644 index 0000000..05e06e0 --- /dev/null +++ b/.github/workflows/ruff.yml @@ -0,0 +1,12 @@ +# Runs the Ruff linter and formatter. + +name: Lint + +on: [push, pull_request] + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: chartboost/ruff-action@v1