We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2708f91 commit 38df92fCopy full SHA for 38df92f
.github/workflows/test.yml
@@ -41,6 +41,28 @@ jobs:
41
TOXENV: ${{ matrix.toxenv }}
42
run: tox
43
44
+ unit_windows:
45
+ runs-on: windows-latest
46
+ strategy:
47
+ matrix:
48
+ include:
49
+ - python-version: "3.10"
50
+ toxenv: py310
51
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
+
66
functional:
67
runs-on: ubuntu-20.04
68
strategy:
0 commit comments