Skip to content

[HW-#1.1] Add test workflow #3

[HW-#1.1] Add test workflow

[HW-#1.1] Add test workflow #3

Workflow file for this run

name: Python application
on:
[ push, pull_request ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Test with pytest
run: |
python ./scripts/run_tests.py