Skip to content

fix test

fix test #5

Workflow file for this run

name: Test
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Run pytest
runs-on: ubuntu-20.04
timeout-minutes: 3
strategy:
matrix:
python-version: ['3.11']
steps:
- name: Set Up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Check out code
uses: actions/checkout@v3
- name: Install Dependencies
run: pip install -r requirements.txt
- name: Run pytest
run: pytest -v