Skip to content

[HW-#1.3] Remove return type annotations #8

[HW-#1.3] Remove return type annotations

[HW-#1.3] Remove return type annotations #8

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.8
uses: actions/setup-python@v2
with:
python-version: "3.8"
- 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