Skip to content

remove ref from coveo-testing #132

remove ref from coveo-testing

remove ref from coveo-testing #132

Workflow file for this run

name: coveo-systools
on:
push:
branches:
- main
paths:
- 'coveo-systools/**'
pull_request:
types: [opened, synchronize, reopened]
paths:
- 'coveo-systools/**'
- '.github/workflows/coveo-systools.yml'
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_SYSTOOLS }}
pre-release: ${{ github.ref != 'refs/heads/main' }}
dry-run: ${{ github.ref != 'refs/heads/main' && github.event.inputs.publish != 'true' }}