Skip to content

Commit 86efe95

Browse files
rhttimabbott
authored andcommitted
Run automated tests using GitHub Actions.
1 parent 0d9141d commit 86efe95

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/test.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: build
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
name: Test
13+
steps:
14+
- uses: actions/checkout@v3
15+
- name: Setup Python 3.10
16+
uses: actions/setup-python@v4
17+
with:
18+
python-version: "3.10"
19+
- name: Install dependencies
20+
run: |
21+
pip install -r requirements.txt
22+
pip install pytest
23+
- name: Running Test-Suite on Linux
24+
run: |
25+
pytest tests/testCommon.py

0 commit comments

Comments
 (0)