Skip to content

Commit

Permalink
ci: use reusable workflows (#159)
Browse files Browse the repository at this point in the history
* ci: use reusable workflows

* rename and change deploy

* add dependency extras

* add pyside6 to pymmcore-plus

* use macos
  • Loading branch information
tlambert03 authored Mar 6, 2024
1 parent 1657db7 commit d3991ac
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 179 deletions.
88 changes: 88 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
name: tests

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
push:
branches:
- main
tags:
- "v*"
pull_request: {}
workflow_dispatch:

jobs:
check-manifest:
name: Check Manifest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pip3 install check-manifest && check-manifest

test:
uses: pyapp-kit/workflows/.github/workflows/test-pyrepo.yml@main
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
pip-post-installs: ${{ matrix.pydantic }}
secrets:
codecov-token: ${{ secrets.CODECOV_TOKEN }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
include:
- python-version: "3.11"
platform: ubuntu-latest
pydantic: "'pydantic<2'"
- python-version: "3.8"
platform: ubuntu-latest
pydantic: "'pydantic<2'"

test-dependents:
uses: pyapp-kit/workflows/.github/workflows/test-dependents.yml@v1
with:
os: macos-latest
python-version: "3.11"
dependency-repo: ${{ matrix.repo }}
dependency-extras: "test"
post-install-cmd: "mmcore install"
qt: ${{ matrix.qt }}
strategy:
fail-fast: false
matrix:
include:
- repo: pymmcore-plus/pymmcore-plus
qt: "pyside6"
- repo: pymmcore-plus/pymmcore-widgets
qt: "pyqt6"
- repo: pymmcore-plus/napari-micromanager
qt: "pyqt5"

deploy:
needs: test
if: ${{ github.repository == 'pymmcore-plus/useq-schema' && contains(github.ref, 'tags') }}
runs-on: ubuntu-latest

permissions:
id-token: write
contents: write

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: 👷 Build
run: pipx run build

- name: 🚢 Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

- uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
files: './dist/*'
179 changes: 0 additions & 179 deletions .github/workflows/test_and_deploy.yml

This file was deleted.

0 comments on commit d3991ac

Please sign in to comment.