headshot / .github /workflows /unit-test.yaml
zaibutcooler's picture
reworking on the project
7ba388d
raw
history blame contribute delete
No virus
445 Bytes
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