forked from strictdoc-project/strictdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (38 loc) · 1.06 KB
/
ci-windows-powershell.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: "StrictDoc on Windows (Powershell)"
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "**" ]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v3
- name: "Print Debug info"
run: |
echo $env:USERPROFILE
echo $env:PATH
echo "$PWD"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
- name: Install minimal Python packages
run: |
pip install -r requirements.bootstrap.txt
- name: "Windows specific: Install StrictDoc's dependencies"
run: |
python developer/pip_install_strictdoc_deps.py
- name: "Windows specific: Install Check dependencies (everything for lint + test)"
run: |
pip install -r requirements.check.txt
- name: Run tests (Powershell)
run: |
invoke test