This repository has been archived by the owner on Mar 24, 2024. It is now read-only.
update dependencies #398
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 | |
on: | |
push: | |
branches-ignore: | |
- deploy | |
tags-ignore: | |
- v* | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
PYTHON_ENV: ci | |
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: run postgres | |
run: make postgresql | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: make install | |
- name: check version | |
run: make test-version | |
- name: run lint | |
run: make test-lint | |
- name: test docs | |
run: make test-docs | |
- name: run tests | |
run: make test | |
- name: upload coverage reports to codecov | |
if: matrix.python-version == '3.11' | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./build/coverage.xml | |
- name: publish | |
if: ${{ matrix.python-version == '3.11' && github.event.head_commit.message == 'release' }} | |
run: make publish | |
- name: create github release | |
if: ${{ matrix.python-version == '3.12' && github.event.head_commit.message == 'release' }} | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "dist/*" | |
token: ${{ secrets.GITHUB_TOKEN }} | |
draft: false | |
prerelease: steps.check-version.outputs.prerelease == 'true' |