Skip to content

Commit 7c5f421

Browse files
authored
Using github actions for running tests (#186)
1 parent 0dbf584 commit 7c5f421

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/tests.yaml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Tests
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- master
8+
tags:
9+
- '*'
10+
11+
jobs:
12+
run_tests:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: run_tests
17+
run: >
18+
ls -la &&
19+
python3 -m pip install -U pytest &&
20+
python3 -m pytest -v -s test_syncobj.py

0 commit comments

Comments
 (0)