Skip to content

CI

CI #671

Workflow file for this run

name: CI
on:
push:
branches: [main]
tags: [v*]
pull_request:
workflow_dispatch:
schedule:
- cron: "0 0 * * *" # run daily
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check-manifest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pipx run check-manifest
test:
uses: pyapp-kit/workflows/.github/workflows/test-pyrepo.yml@v2
secrets: inherit
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
pip-install-pre-release: ${{ github.event_name == 'schedule' }}
report-failures: ${{ github.event_name == 'schedule' }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.8", "3.10", "3.11", "3.12"]
include:
- python-version: "3.9"
os: ubuntu-latest
- python-version: "3.8"
os: macos-13
- python-version: "3.9"
os: macos-13
- python-version: "3.11"
os: macos-latest
- python-version: "3.12"
os: macos-latest
test-app-model:
uses: pyapp-kit/workflows/.github/workflows/test-dependents.yml@v2
with:
dependency-repo: pyapp-kit/app-model
dependency-extras: "qt,test,test-qt"
qt: "PyQt5"
benchmarks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: install
run: python -m pip install -e .[test]
- name: Run benchmarks
uses: CodSpeedHQ/action@v2
with:
run: pytest --codspeed -v --color=yes
deploy:
name: Deploy
needs: [test, check-manifest]
if: success() && startsWith(github.ref, 'refs/tags/') && github.event_name != 'schedule'
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Build
run: |
python -m pip install build
python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
- uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
files: dist/*