Skip to content

sync with huggingface #2

sync with huggingface

sync with huggingface #2

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- "main"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: python -m unittest discover tests