Skip to content
This repository was archived by the owner on Jul 25, 2022. It is now read-only.

Commit d09e1a3

Browse files
committed
disable nightly in workflow
1 parent 368b50e commit d09e1a3

1 file changed

Lines changed: 10 additions & 6 deletions

File tree

.github/workflows/test.yaml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
name: Python test
1919
on:
2020
push:
21-
branches: [ main ]
21+
branches: [main]
2222
pull_request:
23-
branches: [ main ]
23+
branches: [main]
2424

2525
concurrency:
2626
group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }}
@@ -33,12 +33,16 @@ jobs:
3333
fail-fast: false
3434
matrix:
3535
python-version:
36-
- "3.7"
3736
- "3.10"
3837
toolchain:
39-
- stable
40-
- beta
41-
- nightly
38+
- "stable"
39+
- "beta"
40+
# we are not that much eager in walking on the edge yet
41+
# - nightly
42+
# build stable for only 3.7
43+
include:
44+
- python-version: "3.7"
45+
toolchain: "stable"
4246
steps:
4347
- uses: actions/checkout@v2
4448

0 commit comments

Comments
 (0)