Skip to content

Commit 38df92f

Browse files
wip: testing stuff
1 parent 2708f91 commit 38df92f

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/test.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,28 @@ jobs:
4141
TOXENV: ${{ matrix.toxenv }}
4242
run: tox
4343

44+
unit_windows:
45+
runs-on: windows-latest
46+
strategy:
47+
matrix:
48+
include:
49+
- python-version: "3.10"
50+
toxenv: py310
51+
- python-version: "3.10"
52+
toxenv: smoke
53+
steps:
54+
- uses: actions/checkout@v2
55+
- name: Set up Python ${{ matrix.python-version }}
56+
uses: actions/setup-python@v2
57+
with:
58+
python-version: ${{ matrix.python-version }}
59+
- name: Install dependencies
60+
run: pip install tox pytest-github-actions-annotate-failures
61+
- name: Run tests
62+
env:
63+
TOXENV: ${{ matrix.toxenv }}
64+
run: tox
65+
4466
functional:
4567
runs-on: ubuntu-20.04
4668
strategy:

0 commit comments

Comments
 (0)