github Actions, 2nd attempt #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |