Add endpoint tests #378
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 | |
on: | |
push: | |
tags-ignore: | |
- '**' | |
branches: | |
- '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
env: | |
PYTHON_ENV: ci | |
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} | |
strategy: | |
matrix: | |
python-version: ["3.11", "3.12"] | |
services: | |
postgres: | |
image: postgres:15 | |
ports: | |
- 5432:5432 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: test_db | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Start Redis | |
uses: supercharge/[email protected] | |
with: | |
redis-version: 7 | |
- name: Install dependencies | |
run: make install | |
- name: run lint | |
run: make lint-test | |
- name: build docs | |
run: make docs | |
- name: tests | |
run: make test | |
- name: upload coverage | |
if: matrix.python-version == '3.12' | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./build/coverage.xml | |
- name: publish | |
if: ${{ github.ref == 'refs/heads/main' && matrix.python-version == '3.12' && github.event.head_commit.message == 'release' }} | |
run: make publish | |
- name: publish-docs | |
if: ${{ github.ref == 'refs/heads/main' && matrix.python-version == '3.12' }} | |
run: make docs-publish |