Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Complete job matrix
  • Loading branch information
PGijsbers authored Oct 26, 2020
commit 0e6612f27f826f2ea09028302e4f937fd1c4238e
18 changes: 14 additions & 4 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: openml-python ci
name: CI

on: [push]
on: [push, pull_request]

jobs:
unittest:
Expand All @@ -9,8 +9,18 @@ jobs:
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
scikit-learn: [0.22.2, 0.23.1]

scikit-learn: [0.21.2, 0.22.2, 0.23.1]
exclude:
- python-version: 3.8
scikit-learn: 0.21.2
include:
- python-version: 3.6
scikit-learn: 0.18.2
- python-version: 3.6
scikit-learn: 0.19.2
- python-version: 3.6
scikit-learn: 0.20.2

steps:
- uses: actions/checkout@v2
- name: CI Python ${{ matrix.python-version }} scikit-learn ${{ matrix.scikit-learn }}
Expand Down