diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml deleted file mode 100644 index 05ccf40..0000000 --- a/.github/workflows/black.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: Lint - -on: - pull_request: - branches: [main] - - -jobs: - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - - uses: psf/black@stable diff --git a/.github/workflows/ruff_linter.yml b/.github/workflows/ruff_linter.yml new file mode 100644 index 0000000..5419d74 --- /dev/null +++ b/.github/workflows/ruff_linter.yml @@ -0,0 +1,12 @@ +name: Ruff + +on: + pull_request: + branches: [main] + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: chartboost/ruff-action@v1