chore: Remove IAM Zero from the tools list in README.md #89
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: Lint | |
| # Triggered when code is pushed to any branch in a repository | |
| on: | |
| push: {} | |
| workflow_dispatch: {} | |
| jobs: | |
| run-linters: | |
| name: Run linters | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out Git repository | |
| uses: actions/checkout@v4 | |
| - name: Install uv and set the python version | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| python-version: 3.12 | |
| - name: Install mypy and types | |
| run: uv pip install --requirements requirements.txt | |
| - name: Run Ruff (linting and formatting) | |
| uses: astral-sh/ruff-action@v1 | |
| with: | |
| args: check --output-format=github --line-length=120 | |
| - name: Run mypy (type checking) | |
| run: mypy . --ignore-missing-imports |