summaryrefslogtreecommitdiff
path: root/.github/workflows/build_tests.yml
diff options
context:
space:
mode:
authorRĂ©mi Flamary <remi.flamary@gmail.com>2021-04-15 16:14:57 +0200
committerGitHub <noreply@github.com>2021-04-15 16:14:57 +0200
commitb895b22438de3556a2ce0de3ea760d8acb34c175 (patch)
treeaf2e07c004f187330504b48ba63552cb5d44c69f /.github/workflows/build_tests.yml
parent5e8806f25f29104a8d23ba41eea1ab42dd43f72f (diff)
[MRG] Add new python versions for tests (also macos and windows) (#237)
* update python versions and add macosx bigsur * add versions macosx * remove big sur and add 3.7 in macos * disable paramell on macosx * remove double run of tests that was running both on push and pr
Diffstat (limited to '.github/workflows/build_tests.yml')
-rw-r--r--.github/workflows/build_tests.yml11
1 files changed, 5 insertions, 6 deletions
diff --git a/.github/workflows/build_tests.yml b/.github/workflows/build_tests.yml
index fa814ba..ad06a9d 100644
--- a/.github/workflows/build_tests.yml
+++ b/.github/workflows/build_tests.yml
@@ -3,8 +3,6 @@ name: build
on:
push:
- pull_request:
-
create:
branches:
- 'master'
@@ -18,7 +16,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
- python-version: [3.5, 3.6, 3.7, 3.8]
+ python-version: [ 3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v1
@@ -93,11 +91,11 @@ jobs:
macos:
- runs-on: macOS-latest
+ runs-on: macos-latest
strategy:
max-parallel: 4
matrix:
- python-version: [3.7]
+ python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v1
@@ -118,12 +116,13 @@ jobs:
python -m pytest -v test/ ot/ --doctest-modules --ignore ot/gpu/ --cov=ot
+
windows:
runs-on: windows-2019
strategy:
max-parallel: 4
matrix:
- python-version: [3.7]
+ python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v1