missed property tag #150
Workflow file for this run
This file contains hidden or 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: Ruff Lint Check | |
| on: | |
| push: | |
| branches: | |
| - "**" # Run on all branches | |
| jobs: | |
| ruff-lint: | |
| name: Check Code with Ruff | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.10" # Specify the Python version you are using | |
| - name: Install Ruff | |
| run: pip install ruff | |
| - name: Run Ruff Check | |
| run: ruff check . --no-fix | |
| - name: Run Ruff Format | |
| run: ruff format --check . |