Skip to content

Commit 7b24b5a

Browse files
authored
Merge pull request #1 from tmoore-prog/add-auto-tests
"Added unittesting GH actions"
2 parents 4362348 + 0ef6499 commit 7b24b5a

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/unittests.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Continuous Integration
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- name: Set up Python
9+
uses: actions/setup-python@v2
10+
with:
11+
python-version: 3.12.0
12+
architecture: x64
13+
- name: Install dependencies
14+
run: pip install -r requirements.txt
15+
- name: Run Tests
16+
run: python -m pytest

0 commit comments

Comments
 (0)