Skip to content

Update README.md

Update README.md #73

Workflow file for this run

#
# @file : tests.yml
# @date : 17 April 2024
# @authors : Orel Adivi and Daniel Noor
#
name: Run all Unittests - Testing
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Run unittests
run: python -m unittest Unittests.py