Skip to content

Commit 3981721

Browse files
committed
Create run_tests.yml
1 parent 5b82305 commit 3981721

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/run_tests.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Run tests
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
workflow_dispatch:
10+
11+
jobs:
12+
test:
13+
runs-on: ubuntu-latest
14+
steps:
15+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
16+
- uses: actions/checkout@v2
17+
18+
- name: Set up Python 3.5.3
19+
uses: actions/setup-python@v2
20+
with:
21+
python-version: '3.5.3' # Debian Buster (stable)
22+
23+
- name: Run Python unittests
24+
run: python3 -m unittest

0 commit comments

Comments
 (0)