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