Skip to content

introduce test failure #5

introduce test failure

introduce test failure #5

Workflow file for this run

name: Run all tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out project
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install dependencies
run: cd app/ || pip3 install -r requirements.txt
- name: Execute tests
run: cd app/ || python3 -m pytest -v