Skip to content

Removed the debugging commands from the workflow #26

Removed the debugging commands from the workflow

Removed the debugging commands from the workflow #26

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