Skip to content

Commit a7cdab5

Browse files
committed
add windows installation weekly check [skip ci]
1 parent 85fedc7 commit a7cdab5

1 file changed

Lines changed: 36 additions & 0 deletions

File tree

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Test installation with pip on Windows
2+
3+
on:
4+
schedule:
5+
- cron: '0 8 * * 1'
6+
workflow_dispatch:
7+
8+
jobs:
9+
build:
10+
name: Run (${{ matrix.python-version }}, ${{ matrix.os }})
11+
runs-on: ${{ matrix.os }}
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
os: [windows-latest]
16+
python-version: ['3.9']
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
21+
- name: Set up Python
22+
uses: actions/setup-python@v5
23+
with:
24+
python-version: ${{ matrix.python-version }}
25+
26+
- name: Check Python version
27+
run: python --version
28+
29+
- name: Upgrade pip
30+
run: python -m pip install --upgrade pip
31+
32+
- name: Install MLJAR AutoML
33+
run: pip install mljar-supervised
34+
35+
- name: Try to import
36+
run: python -c "import supervised; print(supervised.__version__)"

0 commit comments

Comments
 (0)