Skip to content

Commit 0ff45ea

Browse files
authored
Merge pull request #4 from ByteInternet/add-test-workflow
add test workflow
2 parents 8f00958 + b55179b commit 0ff45ea

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.github/workflows/test.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Run tests
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
python-version: ['3.7', '3.8', '3.9', '3.10']
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
- uses: actions/setup-python@v4
16+
with:
17+
python-version: ${{ matrix.python-version }}
18+
- name: Install dependencies
19+
run: |
20+
pip install -r requirements/base.txt
21+
pip install tox tox-gh-actions
22+
- name: Test with tox
23+
run: tox

CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @vdloo @AlexanderGrooff @alejandrogarza @pieterbeens @tdgroot @markdentoom @martijneichelsheim

0 commit comments

Comments
 (0)