Support 3.10 unions with | #287
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: coveo-example-library | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'coveo-example-library/**' | |
- '!**.lock' | |
- '!**.md' | |
pull_request: | |
types: [opened, synchronize, reopened] | |
paths: | |
- 'coveo-example-library/**' | |
- '.github/workflows/coveo-example-library.yml' | |
- '!**.md' | |
workflow_dispatch: | |
inputs: | |
publish: | |
description: "Publish to pypi.org?" | |
required: false | |
default: 'false' | |
jobs: | |
pyprojectci: | |
name: pyproject ci | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.10"] | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- name: Run stew ci | |
uses: coveo/stew@main | |
with: | |
project-name: ${{ github.workflow }} | |
python-version: ${{ matrix.python-version }} | |
poetry-version: "<2" | |
publish: | |
name: Publish to pypi.org | |
runs-on: ubuntu-20.04 | |
needs: pyprojectci | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Publish to pypi | |
uses: ./.github/workflows/actions/publish-to-pypi | |
with: | |
project-name: ${{ github.workflow }} | |
pypi-token: ${{ secrets.PYPI_TOKEN_COVEO_EXAMPLE_LIBRARY }} | |
pre-release: ${{ github.ref != 'refs/heads/main' }} | |
dry-run: true |