Skip to content

Commit 91db683

Browse files
committed
ci: add CI on Windows using GitHub Action
1 parent bee3c1b commit 91db683

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/windows-ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Windows CI
2+
on: [push, pull_request]
3+
4+
jobs:
5+
ci:
6+
runs-on: windows-latest
7+
steps:
8+
- uses: actions/checkout@v2
9+
- uses: actions/setup-python@v1
10+
- run: pip install tox
11+
- name: Run tests
12+
run: tox
13+
env:
14+
PYTEST_ADDOPTS: '-vv'

0 commit comments

Comments
 (0)