Skip to content

Merge branch 'main' of https://github.com/HMUNACHI/nanodl into main #95

Merge branch 'main' of https://github.com/HMUNACHI/nanodl into main

Merge branch 'main' of https://github.com/HMUNACHI/nanodl into main #95

Workflow file for this run

name: Python Unit Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Run tests
run: |
python -m unittest discover -s tests