name: test on: push: pull_request: permissions: contents: read jobs: test: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [ubuntu-latest] python: ["3.11", "3.12", "3.13"] include: - os: macos-latest python: "3.13" steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python }} - name: Install run: python -m pip install -e '.[test]' - name: Test run: python -m pytest -q - name: CLI smoke test run: ai-incidents --version && ai-incidents -c examples/config.toml config