Skip to content

[pre-commit.ci] pre-commit autoupdate #145

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #145

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
release:
types: [published]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install .[test]
- name: Run tests
run: python -m pytest -v tests
build:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: "3.9"
- name: Build
run: |
python -m pip install -U pip
python -m pip install -U build
python -m build .
- name: Test the wheel
run: |
python -m pip install twine
twine check dist/*
- uses: actions/upload-artifact@v3
with:
path: dist/*
upload_pypi:
needs: [test, build]
runs-on: ubuntu-latest
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist
- uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.pypi_password }}
# To test: repository_url: https://test.pypi.org/legacy/