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 9773e42 commit 4cac854Copy full SHA for 4cac854
.github/workflows/test_all.yml
@@ -13,6 +13,25 @@ on:
13
pull_request:
14
15
jobs:
16
+ windows_test:
17
+ runs-on: windows-latest
18
+ strategy:
19
+ matrix:
20
+ python-version: [ 3.7, 3.8, 3.9 ]
21
+ steps:
22
+ - uses: actions/checkout@v2
23
+ - uses: actions/setup-python@v2
24
+ with:
25
+ python-version: ${{ matrix.python-version }}
26
+ - name: Install requirements
27
+ run: |
28
+ python -m pip install --upgrade pip
29
+ python -m pip install ./
30
+ if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
31
+ - name: Test
32
33
+ python3 -m unittest
34
+ python3 scripts/validate_my_definition.py -d alsdkdefs/apis/assets_query/
35
test:
36
runs-on: ubuntu-latest
37
strategy:
0 commit comments