Add changelog entry for f83e0f672039de0c6b7e5ba7d738cccdd592ca57 #574
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: Test | |
on: | |
- push | |
- pull_request | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
name: Python ${{ matrix.python-version }}, Database ${{ matrix.database-type }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: | |
- "3.7" | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "pypy-3.7" | |
- "pypy-3.8" | |
- "pypy-3.9" | |
database-type: | |
- "sqlite" | |
- "postgres" | |
services: | |
mongodb: | |
image: mongo | |
ports: | |
- 27017:27017 | |
postgresdb: | |
image: postgres:alpine | |
ports: | |
- 5432:5432 | |
env: | |
POSTGRES_PASSWORD: password | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: pip | |
- name: Install dependencies | |
run: python -m pip install tox-gh-actions | |
- name: Run tests | |
run: tox | |
env: | |
DATABASE_TYPE: ${{ matrix.database-type }} |