This repository was archived by the owner on Jun 11, 2024. It is now read-only.
restructure #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
push: | |
pull_request: | |
jobs: | |
lint-ruff: | |
name: Lint with Ruff | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
name: Checkout repository | |
- uses: chartboost/ruff-action@v1 | |
name: Run Ruff | |
with: | |
args: | | |
--ignore E101 | |
--ignore E501 | |
--ignore E722 |