Skip to content

Commit

Permalink
adding workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fschuermeyer committed Jun 16, 2024
1 parent 29080fa commit 69ec9c5
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test_pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Python Unit Test on PR

on:
pull_request:

jobs:
tests:
name: Python Unit Test
runs-on: ubuntu-latest

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

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

- name: Unit Test
run: |
python -m unittest discover

0 comments on commit 69ec9c5

Please sign in to comment.