on: pull_request: push: branches: [main, test-me-*] jobs: main: runs-on: ubuntu-latest strategy: matrix: python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 - name: Install uv with Python ${{ matrix.python-version }} uses: astral-sh/setup-uv@v5 with: python-version: ${{ matrix.python-version }} - name: Install Python ${{ matrix.python-version }} run: uv python install - name: self test action uses: ./