diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 535d2fb..80b075b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,20 +20,26 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest ] - python-version: ["3.11"] + python-version: ["3.12", "3.13"] + include: + - os: macos-latest + python-version: '3.13' + - os: windows-latest + python-version: '3.13' steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true - name: Upgrade PIP run: python -m pip install --upgrade pip @@ -56,4 +62,3 @@ jobs: with: name: coverage_${{ matrix.python-version }} path: coverage -