Skip to content

add working counter solution" #3

add working counter solution"

add working counter solution" #3

Workflow file for this run

name: 'Run application tests'
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
# Runs a single command using the runners shell
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: python -m pip install -r requirements.txt
- name: Run tests
run: pytest