Skip to content

[HA-#2.0] Add initial solution for 2nd ht #11

[HA-#2.0] Add initial solution for 2nd ht

[HA-#2.0] Add initial solution for 2nd ht #11

Workflow file for this run

name: Python application
on:
[ push, pull_request ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: "3.9"
- 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