Skip to content

Commit

Permalink
add: pipeline CICD unittesting
Browse files Browse the repository at this point in the history
  • Loading branch information
seballgeyer committed Jul 18, 2024
1 parent 8401b57 commit 8edaade
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/python-cicd-units.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Python CICD pipelines - Unittesting

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.10
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install numpy scipy pandas
- name: Run tests
run: |
python -m unittest discover -s tests -v

0 comments on commit 8edaade

Please sign in to comment.