Skip to content

Chore: Update python version #150

Chore: Update python version

Chore: Update python version #150

Workflow file for this run

name: unit tests
on:
workflow_dispatch:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install pip --upgrade
python -m pip install -r requirements.txt
python -m pip install pytest hypothesis torchnyan
- name: Test with pytest
run: |
python -m pytest tests