Skip to content

Feat: Update PLMs

Feat: Update PLMs #144

Workflow file for this run

name: Unit Tests
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install pip setuptools wheel --upgrade
python -m pip install -r requirements.txt
python -m pip install pytest hypothesis torchnyan
- name: Test with pytest
run: |
python -m pytest tests