Skip to content

Commit

Permalink
make github run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
naved001 committed Sep 27, 2023
1 parent f32cf5f commit deb58d2
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Unit tests
on:
push:
pull_request:

jobs:
run-unit-tests:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3

- name: Set up python
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Run unit tests
run: |
python -m unittest process_report/tests/unit_tests.py

0 comments on commit deb58d2

Please sign in to comment.