UTs should run on each push #2
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: Build and Release | |
on: | |
push: # This applies to all pushes | |
branches: | |
- '**' # Run on all branches for push | |
pull_request: | |
branches: | |
- '**' # Run unit tests on all PRs as well | |
tags: | |
- 'v*.*.*' # For tag pushes | |
jobs: | |
run-unit-tests: | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Poetry | |
run: | | |
rm -rf $HOME/.poetry/bin/poetry | |
curl -sSL https://install.python-poetry.org | python3 - | |
poetry --version | |
- name: Install dependencies | |
run: | | |
poetry install --no-interaction --no-ansi --no-root | |
- name: Run Unit Tests | |
run: | | |
mkdir test-results | |
poetry run python -m pytest --junitxml=test-results/junit.xml -v tests | |
- name: Upload test results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: test-results | |
path: test-results | |
verify: | |
if: github.ref == 'refs/heads/master' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Verify | |
run: | | |
./verify.sh | |
publish-to-test-pypi: | |
if: github.ref == 'refs/heads/master' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12' | |
- name: Install Poetry | |
run: | | |
rm -rf $HOME/.poetry/bin/poetry | |
curl -sSL https://install.python-poetry.org | python3 - | |
poetry --version | |
- name: Install dependencies | |
run: | | |
poetry install --no-interaction --no-ansi --no-root | |
- name: Build package | |
run: | | |
poetry build | |
- name: Publish to Test PyPI | |
env: | |
PYPI_TEST_TOKEN: ${{ secrets.PYPI_TEST_TOKEN }} | |
run: | | |
poetry config repositories.testpypi https://test.pypi.org/legacy/ | |
poetry publish -u __token__ -p $PYPI_TEST_TOKEN -r testpypi | |
publish-to-pypi: | |
if: startsWith(github.ref, 'refs/tags/v') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12' | |
- name: Install Poetry | |
run: | | |
rm -rf $HOME/.poetry/bin/poetry | |
curl -sSL https://install.python-poetry.org | python3 - | |
poetry --version | |
- name: Install dependencies | |
run: | | |
poetry install --no-interaction --no-ansi --no-root | |
- name: Build package | |
run: | | |
poetry build | |
- name: Publish to PyPI | |
env: | |
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} | |
run: | | |
poetry publish -u __token__ -p $PYPI_TOKEN |