Skip to content

Commit 021efb9

Browse files
committed
add automated unit testing
1 parent 28526ff commit 021efb9

File tree

3 files changed

+19
-48
lines changed

3 files changed

+19
-48
lines changed

.github/workflows/precommit.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/workflows/security.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/workflows/tests.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Run all tests
2+
3+
on:
4+
pull_request:
5+
push:
6+
7+
jobs:
8+
tests:
9+
name: tests
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout
14+
- name: Set up Python 3.x
15+
uses: actions/setup-python
16+
with:
17+
python-version: "3.10"
18+
- run: python -m pip install -r requirements/local.txt
19+
- run: python -m tests

0 commit comments

Comments
 (0)