Skip to content

unit tests

unit tests #132

Workflow file for this run

name: unit tests
on:
workflow_dispatch:
push:
schedule:
- cron: "0 21 * * 6"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.8'
- 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