Skip to content

fixed issue with python 3.11 #92

fixed issue with python 3.11

fixed issue with python 3.11 #92

Workflow file for this run

name: Test Models
on:
pull_request:
types: [opened, reopened, edited]
branches:
- 'main'
push:
branches:
- 'main'
workflow_dispatch:
jobs:
Test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
cache: 'pip'
- name: Install Requirements
run: pip install -r requirements.txt
- name: Run Tests
run: python -m pytest -v