Skip to content

added script to a service #5

added script to a service

added script to a service #5

Workflow file for this run

# .github/workflows/main.yml
name: Run pytest
on:
push:
branches:
- # run on all branches
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run pytest
run: pytest