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

disable nightly in workflow #33

Merged
merged 1 commit into from
Mar 9, 2022
Merged
Changes from all commits
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
16 changes: 10 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
name: Python test
on:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]
branches: [main]

concurrency:
group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }}
Expand All @@ -33,12 +33,16 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.7"
- "3.10"
toolchain:
- stable
- beta
- nightly
- "stable"
- "beta"
# we are not that much eager in walking on the edge yet
# - nightly
# build stable for only 3.7
include:
- python-version: "3.7"
toolchain: "stable"
steps:
- uses: actions/checkout@v2

Expand Down