Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `4` | | [hynek/build-and-inspect-python-package](https://github.com/hynek/build-and-inspect-python-package) | `1.5` | `2.0` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `3` | `4` | | [actions/setup-python](https://github.com/actions/setup-python) | `2` | `5` | | [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) | `1.8.5` | `1.8.11` | Updates `actions/checkout` from 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) Updates `hynek/build-and-inspect-python-package` from 1.5 to 2.0 - [Release notes](https://github.com/hynek/build-and-inspect-python-package/releases) - [Changelog](https://github.com/hynek/build-and-inspect-python-package/blob/main/CHANGELOG.md) - [Commits](https://github.com/hynek/build-and-inspect-python-package/compare/v1.5...v2.0) Updates `actions/download-artifact` from 3 to 4 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4) Updates `actions/setup-python` from 2 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v2...v5) Updates `pypa/gh-action-pypi-publish` from 1.8.5 to 1.8.11 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.8.5...v1.8.11) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: hynek/build-and-inspect-python-package dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
94 lines
2.1 KiB
YAML
94 lines
2.1 KiB
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- "test-me-*"
|
|
|
|
pull_request:
|
|
branches:
|
|
- "*"
|
|
|
|
# Cancel running jobs for the same workflow and branch.
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
|
|
package:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Build and Check Package
|
|
uses: hynek/build-and-inspect-python-package@v2.0
|
|
|
|
test:
|
|
|
|
needs: [package]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
tox_env:
|
|
- "py37-pytestlatest"
|
|
- "py38-pytestlatest"
|
|
- "py39-pytestlatest"
|
|
- "py310-pytestlatest"
|
|
- "py311-pytestlatest"
|
|
- "py311-pytestmain"
|
|
- "py312-pytestlatest"
|
|
- "py310-psutil"
|
|
- "py310-setproctitle"
|
|
|
|
os: [ubuntu-latest, windows-latest]
|
|
include:
|
|
- tox_env: "py37-pytestlatest"
|
|
python: "3.7"
|
|
- tox_env: "py38-pytestlatest"
|
|
python: "3.8"
|
|
- tox_env: "py39-pytestlatest"
|
|
python: "3.9"
|
|
- tox_env: "py310-pytestlatest"
|
|
python: "3.10"
|
|
- tox_env: "py311-pytestlatest"
|
|
python: "3.11"
|
|
- tox_env: "py311-pytestmain"
|
|
python: "3.11"
|
|
- tox_env: "py312-pytestlatest"
|
|
python: "3.12"
|
|
- tox_env: "py310-psutil"
|
|
python: "3.10"
|
|
- tox_env: "py310-setproctitle"
|
|
python: "3.10"
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
# Needed to fetch tags, which are required by setuptools-scm.
|
|
fetch-depth: 0
|
|
|
|
- name: Download Package
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: Packages
|
|
path: dist
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ matrix.python }}
|
|
|
|
- name: Install tox
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install tox
|
|
|
|
- name: Test
|
|
shell: bash
|
|
run: |
|
|
tox run -e ${{ matrix.tox_env }} --installpkg `find dist/*.tar.gz`
|