Skip to content

Commit

Permalink
Merge pull request #1 from hellocodingDE/add-github-workflow
Browse files Browse the repository at this point in the history
adding workflow
  • Loading branch information
fschuermeyer authored Jun 16, 2024
2 parents 29080fa + 69ec9c5 commit d8ecfbf
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 d8ecfbf

Please sign in to comment.