From d09e1a3cdd1f0a459c2e0967cfc4aa5e8160e602 Mon Sep 17 00:00:00 2001 From: Jiayu Liu Date: Wed, 9 Mar 2022 16:56:41 +0800 Subject: [PATCH] disable nightly in workflow --- .github/workflows/test.yaml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 0c81e26..ece74aa 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -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 }} @@ -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