We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09fdd03 commit ab3dc5fCopy full SHA for ab3dc5f
.github/workflows/main.yml
@@ -1,5 +1,3 @@
1
-# This is a basic workflow to help you get started with Actions
2
-
3
name: CI
4
5
# Controls when the workflow will run
@@ -9,11 +7,10 @@ on:
9
7
branches: [ master ]
10
8
pull_request:
11
12
13
- # Allows you to run this workflow manually from the Actions tab
14
- workflow_dispatch:
15
+
16
jobs:
+ # Checks compatibility with an old version of sklearn (0.20.3)
17
compatibility:
18
runs-on: ${{ matrix.os }}
19
strategy:
@@ -37,6 +34,8 @@ jobs:
37
34
pip install git+https://github.com/skggm/skggm.git@${SKGGM_VERSION}
38
35
pytest test --cov
39
36
bash <(curl -s https://codecov.io/bash)
+ # Run normal testing with the latests versions of all dependencies
40
build:
41
42
0 commit comments