Skip to content

added pytest workflow #1

added pytest workflow

added pytest workflow #1

Workflow file for this run

name: Run Pytest
on: [push, pull_request]
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.10"
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt
- name: Run Pytest
run: |
pytest