Skip to content

Commit

Permalink
unit test wf
Browse files Browse the repository at this point in the history
  • Loading branch information
rsarm authored May 30, 2024
1 parent 5555d71 commit 2de27b8
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Unit Tests

on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch: # Allows manual triggering

jobs:
test:
name: Run Unit Tests
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'

- name: Install dependencies
run: pip install -r requirements.txt

- name: Run Unit Tests
run: pytest . -vvv

0 comments on commit 2de27b8

Please sign in to comment.