Skip to content

bump to 2.1.0rc1

bump to 2.1.0rc1 #87

Workflow file for this run

name: CI
on:
push:
branches:
- master
tags:
- v*
pull_request:
jobs:
tox:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13, pypy-3.10]
os: [macOS-latest, ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set Up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
allow-prereleases: true
cache-dependency-path: |
pyproject.toml
setup.cfg
setup.py
- name: Install
run: |
pip install tox
- name: tox
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: tox -e py,release
- name: upload dist
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}_${{ matrix.python-version}}_dist
path: dist
all-successful:
# https://github.community/t/is-it-possible-to-require-all-github-actions-tasks-to-pass-without-enumerating-them/117957/4?u=graingert
runs-on: ubuntu-latest
needs: [tox]
permissions:
id-token: write
steps:
- name: Download dists for PyPI
uses: actions/download-artifact@v4
with:
name: ubuntu-latest_3.11_dist
path: dist
- name: Display structure of donwloaded files
run: ls -R
- name: Publish package
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
- name: note that all tests succeeded
run: echo "🎉"