Skip to content

Merge pull request #27 from raminmohammadi/fixing-workflows #11

Merge pull request #27 from raminmohammadi/fixing-workflows

Merge pull request #27 from raminmohammadi/fixing-workflows #11

name: Testing Github Lab1 Python Unittests
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: pip install -r Labs/Github_Labs/Lab1/requirements.txt
- name: Run unittests
run: python -m unittest Labs/Github_Labs/Lab1/test/test_unittest.py
- name: Notify on success
if: success()
run: echo "Unit tests passed successfully"
- name: Notify on failure
if: failure()
run: echo "Unit tests failed"