Skip to content

bump to 14.5.0

bump to 14.5.0 #1490

Workflow file for this run

name: ci
on:
pull_request:
push:
branches-ignore:
- 'dependabot/**'
tags:
- '**'
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
uses: mhils/workflows/.github/workflows/python-tox.yml@v5
with:
cmd: tox -e lint
test:
strategy:
fail-fast: false
matrix:
include:
- os: windows-latest
py: 3.12.0
args: --cov-fail-under=100
- os: macos-latest
py: 3.12.0
args: --cov-fail-under=100
- os: ubuntu-latest
py: 3.12.0
args: --cov-fail-under=100
- os: ubuntu-latest
py: 3.11.5
- os: ubuntu-latest
py: 3.10.13
- os: ubuntu-latest
py: 3.9.18
- os: ubuntu-latest
py: 3.8.18
uses: mhils/workflows/.github/workflows/python-tox.yml@v5
with:
cmd: tox -e py -- -vvv ${{ matrix.args }}
os: ${{ matrix.os }}
python-version: ${{ matrix.py }}
build:
uses: mhils/workflows/.github/workflows/python-build.yml@v5
check:
if: always()
needs:
- lint
- test
- build
uses: mhils/workflows/.github/workflows/alls-green.yml@v5
with:
jobs: ${{ toJSON(needs) }}
deploy:
uses: mhils/workflows/.github/workflows/python-deploy.yml@v5
with:
artifact-name: wheels
needs: check
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
secrets:
password: ${{ secrets.TWINE_PASSWORD }}