Summary
Jobs
test-package (ubuntu-latest, 3.10, 2022-01-01)
test-package (ubuntu-latest, 3.10, 2024-01-01)
test-package (ubuntu-latest, 3.10, 3000-01-01)
test-package (ubuntu-latest, 3.11, 2022-01-01)
test-package (ubuntu-latest, 3.11, 2024-01-01)
test-package (ubuntu-latest, 3.11, 3000-01-01)
test-package (ubuntu-latest, 3.12, 2022-01-01)
test-package (ubuntu-latest, 3.12, 2024-01-01)
test-package (ubuntu-latest, 3.12, 3000-01-01)
test-package (windows-latest, 3.10, 2022-01-01)
test-package (windows-latest, 3.10, 2024-01-01)
test-package (windows-latest, 3.10, 3000-01-01)
test-package (windows-latest, 3.11, 2022-01-01)
test-package (windows-latest, 3.11, 2024-01-01)
test-package (windows-latest, 3.11, 3000-01-01)
test-package (windows-latest, 3.12, 2022-01-01)
test-package (windows-latest, 3.12, 2024-01-01)
test-package (windows-latest, 3.12, 3000-01-01)
test-package (macos-latest, 3.10, 2022-01-01)
test-package (macos-latest, 3.10, 2024-01-01)
test-package (macos-latest, 3.10, 3000-01-01)
test-package (macos-latest, 3.11, 2022-01-01)
test-package (macos-latest, 3.11, 2024-01-01)
test-package (macos-latest, 3.11, 3000-01-01)
test-package (macos-latest, 3.12, 2022-01-01)
test-package (macos-latest, 3.12, 2024-01-01)
test-package (macos-latest, 3.12, 3000-01-01)
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push]
name: Test Package
jobs:
test-package:
name: test-package
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
python-version:
- "3.10"
- "3.11"
- "3.12"
package-date:
- "2022-01-01"
- "2024-01-01"
- "3000-01-01"
steps:
- uses: actions/checkout@v4
- name: Set up uv
if: ${{ matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' }}
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Set up uv
if: ${{ matrix.os == 'windows-latest' }}
run: irm https://astral.sh/uv/install.ps1 | iex
shell: powershell
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev --exclude-newer {{ matrix.package-date }}
- name: Test package
run: uv run pytest
You can’t perform that action at this time.