Merge pull request #24 from maykinmedia/drf-spectacular #218
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: ci-build | |
# Run this workflow every time a new commit pushed to your repository | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- '*' | |
pull_request: | |
workflow_dispatch: | |
env: | |
PGUSER: postgres | |
PGPORT: '5432' | |
DB_HOST: '127.0.0.1' | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: ['3.10', '3.11'] | |
django: ['4.2'] | |
services: | |
postgres: | |
image: postgis/postgis:14-3.2 | |
env: | |
POSTGRES_HOST_AUTH_METHOD: trust | |
ports: | |
- 5432:5432 | |
# needed because the postgres container does not provide a healthcheck | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
name: Run the test suite (Python ${{ matrix.python }}, Django ${{ matrix.django }}) | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install pip dependencies | |
run: pip install tox tox-gh-actions | |
- name: Install system dependencies | |
run: | | |
sudo apt-get update \ | |
&& sudo apt-get install -y --no-install-recommends \ | |
libgdal-dev \ | |
gdal-bin | |
- name: Run tests | |
run: tox | |
env: | |
PYTHON_VERSION: ${{ matrix.python }} | |
DJANGO: ${{ matrix.django }} | |
- name: Publish coverage report | |
uses: codecov/codecov-action@v3 | |
publish: | |
name: Publish package to PyPI | |
runs-on: ubuntu-latest | |
needs: tests | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Build sdist and wheel | |
run: | | |
pip install pip setuptools wheel --upgrade | |
python setup.py sdist bdist_wheel | |
- name: Publish a Python distribution to PyPI | |
uses: pypa/[email protected] | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_TOKEN }} |