-
Notifications
You must be signed in to change notification settings - Fork 44
62 lines (53 loc) · 1.48 KB
/
test-core.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
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Test scikits-odes-core
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
#- python-version: "3.7"
# tox-env: py37
#- python-version: "3.8"
# tox-env: py38
#- python-version: "3.9"
# tox-env: py39
#- python-version: "3.10"
# tox-env: py310
#- python-version: "3.11"
# tox-env: py311
#- python-version: "3.12"
# tox-env: py312
- python-version: "3.11"
tox-env: check-manifest
#- python-version: "3.11"
# tox-env: checkreadme
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: pip cache
uses: actions/cache@v4
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-1
restore-keys: |
${{ runner.os }}-pip-
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade tox
- name: Run tests
run: |
cd packages/scikits-odes-core && tox
env:
TOXENV: ${{ matrix.tox-env }}