Skip to content

Update tests.yml

Update tests.yml #4

Workflow file for this run

name: Run unit tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
unittests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Run unit tests
run: python -u -m unittest discover -v