Skip to content

chore: Remove IAM Zero from the tools list in README.md #89

chore: Remove IAM Zero from the tools list in README.md

chore: Remove IAM Zero from the tools list in README.md #89

Workflow file for this run

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