Update README.md #125
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: Testing Github Lab1 Python Unittests | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
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" |