Skip to content

Path fixed

Path fixed #3

Workflow file for this run

name: build & test
on:
push:
branches-ignore:
- master
jobs:
test:
name: Testing
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install pytest
run: pip install pytest
- name: Run tests
run: pytest tests