Skip to content

Upgrade to sqlalchemy 1.4.0 #88

Upgrade to sqlalchemy 1.4.0

Upgrade to sqlalchemy 1.4.0 #88

Workflow file for this run

name: Pytest
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install PostgreSQL
uses: harmon758/postgresql-action@v1
with:
postgresql db: jwthenticator
postgresql password: my-password
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry config virtualenvs.create false
poetry install
- name: Run Pytest
env:
DB_PASS: my-password
run: |
python -m pytest jwthenticator