Skip to content

Put yml in the right folder #1

Put yml in the right folder

Put yml in the right folder #1

Workflow file for this run

name: Test Suite
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: python -m unittest discover tests