Skip to content

redirect_uri -> redirect_url #39

redirect_uri -> redirect_url

redirect_uri -> redirect_url #39

Workflow file for this run

name: Unit Tests
on:
workflow_dispatch:
push:
paths:
- 'auth_server/**'
- 'tests/**'
- '.github/**'
jobs:
tests:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install && poetry run pytest
env:
PAPERMERGE__SECURITY__SECRET_KEY: ${{ secrets.security__secret_key }}