Skip to content

Creation of an action to deploy the presentation site. #90

Creation of an action to deploy the presentation site.

Creation of an action to deploy the presentation site. #90

Workflow file for this run

name: unittest
on:
push:
branches:
- stable
pull_request:
branches:
- stable
jobs:
unittest:
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.11
- name: Run Unit Tests
run: python -m unittest discover tests -p '*test*.py'