Skip to content

github Actions, 2nd attempt #6

github Actions, 2nd attempt

github Actions, 2nd attempt #6

Workflow file for this run

name: Unit test
on: push
jobs:
unit-testing:
runs-on: ubuntu-latest
steps:
- name : Checkout code
uses : actions/checkout@v2
- name : Install Packages
run : pip install unittest
- name : Run tests
run : unittest test01.py