Skip to content

Fixed the import to point to the correct authenticator as the dummy o… #34

Fixed the import to point to the correct authenticator as the dummy o…

Fixed the import to point to the correct authenticator as the dummy o… #34

Workflow file for this run

name: Run Tests
on: push
permissions:
contents: write
defaults:
run:
working-directory: ./
jobs:
app-testing:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install poetry
run: |
pipx install poetry
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version-file: 'pyproject.toml'
cache: 'poetry'
- name: Install Dependencies
run: poetry install
- name: Run Tests
run: poetry run pytest