-
Notifications
You must be signed in to change notification settings - Fork 27
56 lines (48 loc) · 1.64 KB
/
PyPI.yaml
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
50
51
52
53
54
55
56
name: PyPI
on:
schedule:
# Weekly tests
- cron: "0 2 * * 1"
jobs:
test:
name: Test on ${{ matrix.os }}, Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
# os: [macOS-latest, ubuntu-latest, windows-latest] # TODO use this when macOS-latest becomes stable again
# os: [macOS-13, ubuntu-latest, windows-latest] # TODO macOS-13 fails when building scipy with pip
os: [ubuntu-latest, windows-latest]
python-version: [3.8, 3.9, "3.10"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Checkout latest tag
shell: bash
run: |
TAG=`git describe --tags $(git rev-list --tags --max-count=1)`
echo "Latest tag is: $TAG"
git checkout tags/$TAG
- name: Additional info about the build
shell: bash
run: |
uname -a
df -h
ulimit -a
- name: Install package from PyPI
# conda setup requires this special shell
shell: bash -l {0}
run: |
python -m pip install mlcolvar[test]
pip list
- name: Run tests
# conda setup requires this special shell
shell: bash -l {0}
run: |
pytest -v --cov=mlcolvar --cov-report=xml --color=yes mlcolvar/tests/
- name: Run notebook tests
# conda setup requires this special shell
shell: bash -l {0}
if: contains( matrix.os, 'ubuntu' )
run: |
pytest -v --nbmake docs/notebooks/ --ignore=docs/notebooks/tutorials/data/ --cov=mlcolvar --cov-append --cov-report=xml --color=yes