name: checks on: push: branches: [main] pull_request: jobs: checks: runs-on: ubuntu-latest strategy: matrix: python-version: ["3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: pip - run: pip install -e .[dev] - run: isort --check-only redmine_reporter tests - run: black --check redmine_reporter tests - run: ruff check redmine_reporter tests - run: ruff format --check redmine_reporter tests - run: mypy redmine_reporter - run: pytest -v