chore: Prepare release 1.5.1 #830
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
name: ci | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
defaults: | |
run: | |
shell: bash | |
env: | |
LANG: en_US.utf-8 | |
LC_ALL: en_US.utf-8 | |
PYTHONIOENCODING: UTF-8 | |
PYTHON_VERSIONS: "" | |
jobs: | |
quality: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Fetch all tags | |
run: git fetch --depth=1 --tags | |
- name: Setup Graphviz | |
uses: ts-graphviz/setup-graphviz@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Setup uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
enable-cache: true | |
cache-dependency-glob: pyproject.toml | |
- name: Install dependencies | |
run: make setup | |
- name: Check if the documentation builds correctly | |
run: make check-docs | |
- name: Check the code quality | |
run: make check-quality | |
- name: Check if the code is correctly typed | |
run: make check-types | |
- name: Check for breaking changes in the API | |
run: make check-api | |
- name: Store objects inventory for tests | |
uses: actions/upload-artifact@v4 | |
with: | |
name: objects.inv | |
path: site/objects.inv | |
exclude-test-jobs: | |
runs-on: ubuntu-latest | |
outputs: | |
jobs: ${{ steps.exclude-jobs.outputs.jobs }} | |
steps: | |
- id: exclude-jobs | |
run: | | |
if ${{ github.repository_owner == 'pawamoy-insiders' }}; then | |
echo 'jobs=[ | |
{"os": "macos-latest"}, | |
{"os": "windows-latest"}, | |
{"python-version": "3.10"}, | |
{"python-version": "3.11"}, | |
{"python-version": "3.12"}, | |
{"python-version": "3.13"}, | |
{"python-version": "3.14"} | |
]' | tr -d '[:space:]' >> $GITHUB_OUTPUT | |
else | |
echo 'jobs=[ | |
{"os": "macos-latest", "resolution": "lowest-direct"}, | |
{"os": "windows-latest", "resolution": "lowest-direct"} | |
]' | tr -d '[:space:]' >> $GITHUB_OUTPUT | |
fi | |
tests: | |
needs: | |
- quality | |
- exclude-test-jobs | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
python-version: | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
- "3.13" | |
- "3.14" | |
resolution: | |
- highest | |
- lowest-direct | |
exclude: ${{ fromJSON(needs.exclude-test-jobs.outputs.jobs) }} | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.python-version == '3.14' || matrix.python-version == '3.13' }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Fetch all tags | |
run: git fetch --depth=1 --tags | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
allow-prereleases: true | |
- name: Setup uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
enable-cache: true | |
cache-dependency-glob: pyproject.toml | |
cache-suffix: py${{ matrix.python-version }} | |
- name: Install dependencies | |
env: | |
UV_RESOLUTION: ${{ matrix.resolution }} | |
run: make setup | |
- name: Download objects inventory | |
uses: actions/download-artifact@v4 | |
with: | |
name: objects.inv | |
path: site/ | |
- name: Run the test suite | |
run: make test |