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 c86951b commit 7c89e64Copy full SHA for 7c89e64
.github/workflows/notebooks.yml
@@ -11,24 +11,30 @@ on:
11
- cron: '0 5 * * 1'
12
13
jobs:
14
- build:
+ tests:
15
+ name: ${{ matrix.os }} ${{ matrix.name }}
16
runs-on: ${{ matrix.os }}
17
strategy:
18
max-parallel: 12
19
matrix:
20
os: [Ubuntu-latest, macOS-latest]
21
include:
22
+
23
- python-version: '3.8'
24
toxenv: py38-test-oldestdeps
25
+ name: with Python 3.8 and oldest versioned dependencies
26
27
- python-version: '3.9'
28
toxenv: py39-test
29
+ name: with Python 3.9
30
31
- python-version: '3.10'
32
toxenv: py310-test
33
+ name: with Python 3.10
34
35
- python-version: '3.11'
36
toxenv: py311-test-devdeps
37
+ name: with Python 3.11 with developer versioned dependencies
38
39
steps:
40
- uses: actions/checkout@v3
0 commit comments