Update change log for release. #133
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
# For documentation on GitHub Actions Workflows, see: | |
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions | |
name: "build" | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 # https://github.com/actions/checkout | |
with: | |
# Only a single commit is fetched by default, for the ref/SHA that triggered the workflow. | |
# Set fetch-depth: 0 to fetch all history for all branches and tags. | |
fetch-depth: 0 # Needed for setuptools_scm to work correctly | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
allow-prereleases: true | |
- name: Install the project | |
run: uv sync --all-extras --dev | |
- name: Run tests | |
run: uv run inv pytest --junit --no-pty --base | |
- name: Run isolated tests | |
run: uv run inv pytest --junit --no-pty --isolated |