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 892392a commit a3d9094Copy full SHA for a3d9094
.github/workflows/test.yml
@@ -8,7 +8,7 @@ on:
8
9
jobs:
10
get-latest-python:
11
- runs-on: ubuntu-latest
+ runs-on: [self-hosted, self-hosted-ubuntu]
12
outputs:
13
latest-python: ${{ steps.latest.outputs.version }}
14
steps:
@@ -24,14 +24,14 @@ jobs:
24
matrix:
25
include:
26
# minimum supported dependencies
27
- - os: ubuntu-latest
+ - os: [self-hosted, self-hosted-ubuntu]
28
python-version: "3.9"
29
use-pinned-deps: true
30
numpy-version: "==1.24.1"
31
sklearn-version: "==1.4.*"
32
scipy-version: "==1.10.*"
33
# latest stable dependencies
34
35
python-version: "${{ needs.get-latest-python.outputs.latest-python }}"
36
use-pinned-deps: false
37
- os: windows-latest
0 commit comments