From f61b6c0359a014be505a79fe0d1a04a9f28b9c3f Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sun, 1 Nov 2020 15:05:28 +1000 Subject: [PATCH] drop 3.7 support in CI --- .github/workflows/checks.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index ec045cc75..eecb210cd 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -3,6 +3,16 @@ name: Checks on: [push, pull_request] jobs: + contrib: + name: Author in CONTRIBUTORS + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Check + run: | + set -x + .github/scripts/contrib.sh + check_tag: name: Tag name outputs: @@ -31,7 +41,7 @@ jobs: "windows-latest" ], "python": [ - 3.7 + 3.8 ], "include": [ { @@ -67,12 +77,12 @@ jobs: parser = argparse.ArgumentParser(description="Dynamically creates a build matrix for the GitHub Actions.") parser.add_argument("--tagged", action="store_true", default=False, - help="Adds Python 3.8 builds into the matrix") + help="Skip checks on release build") args = parser.parse_args() if args.tagged: - matrix["python"].append("3.8") + pass else: matrix["BUILD_TYPE"].append("check") @@ -88,16 +98,6 @@ jobs: printf '::set-output name=matrix::%s\n' "$(python3 buildmatrix.py)" fi - contrib: - name: Author in CONTRIBUTORS - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - name: Check - run: | - set -x - .github/scripts/contrib.sh - tests: needs: - check_tag