Skip to content

Commit 3b229e1

Browse files
committed
More test options
1 parent 6288ccb commit 3b229e1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci_pip.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@ on:
1111
jobs:
1212
build:
1313

14-
runs-on: ubuntu-latest
14+
runs-on: ${{ matrix.runs-on }}
1515
strategy:
1616
fail-fast: false
1717
matrix:
18+
runs-on: [ubuntu-latest, ubuntu-22.04]
1819
python-version: ["3.9", "3.10", "3.11", "3.12"] # not yet working: "3.12"??
1920

2021
steps:
@@ -34,7 +35,6 @@ jobs:
3435
pip list
3536
3637
- name: Install numpy < 2 if necessary...
37-
if: ${{ matrix.python-version == '3.11' }}
3838
run: |
3939
pip install "numpy<2"
4040
pip list

.github/workflows/omv-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: Continuous build using OMV
33

44
on:
55
push:
6-
branches: [ master, development, experimental ]
6+
branches: [ master, development, experimental, test* ]
77
pull_request:
8-
branches: [ master, development, experimental ]
8+
branches: [ master, development, experimental, test* ]
99

1010
jobs:
1111
build:

0 commit comments

Comments
 (0)