Skip to content

Commit 4cac854

Browse files
author
Anton Benkevich
committed
Add windows test
1 parent 9773e42 commit 4cac854

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/test_all.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,25 @@ on:
1313
pull_request:
1414

1515
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+
run: |
33+
python3 -m unittest
34+
python3 scripts/validate_my_definition.py -d alsdkdefs/apis/assets_query/
1635
test:
1736
runs-on: ubuntu-latest
1837
strategy:

0 commit comments

Comments
 (0)