Skip to content

Fix testpypi publish CICD step #6

Fix testpypi publish CICD step

Fix testpypi publish CICD step #6

Workflow file for this run

name: CI/CD
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
main:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Test
run: ./nox.sh
- name: Create draft Github release
if: ${{ github.ref == 'refs/heads/main' }}
run: ./nox.sh -s draft_release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Publish package to testpypi
if: ${{ github.ref == 'refs/heads/main' }}
run: ./nox.sh -s publish -- testpypi
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TESTPYPI_TOKEN }}
os_compatibility:
runs-on: ${{ matrix.os }}
name: "OS: ${{ matrix.os }} Python: ${{ matrix.python-version }}"
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip wheel setuptools
pip install coverage[toml] nox==2023.04.22
- name: Run unit tests
run: nox --session unit_tests-${{ matrix.python-version }}
- name: Combine coverage reports
run: |
coverage combine
coverage xml --fail-under 0
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}