From f346241c9896005f872365e05d91178bbf2aa61f Mon Sep 17 00:00:00 2001 From: Jesse-Cameron Date: Tue, 20 Sep 2022 16:21:25 +1000 Subject: [PATCH] =?UTF-8?q?fix:=20remove=20go=201.13=20=E2=86=92=201.16=20?= =?UTF-8?q?as=20it's=20incompatible=20with=20sys?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit according to maintainers, they only support the two latest versions: https://github.com/golang/go/issues/55078#issuecomment-1247321657 --- .github/workflows/ci.yml | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b00841c..2907c17 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,24 +25,15 @@ jobs: # - goVersion: "1" # GOARCH: "ppc64le" # SKIP_PYTHON_BINDINGS_TESTS: "0" - - goVersion: "1.13" - GOARCH: "amd64" - SKIP_PYTHON_BINDINGS_TESTS: "0" - - goVersion: "1.14" - GOARCH: "amd64" - SKIP_PYTHON_BINDINGS_TESTS: "0" - - goVersion: "1.15" - GOARCH: "amd64" - SKIP_PYTHON_BINDINGS_TESTS: "0" - - goVersion: "1.16" - GOARCH: "amd64" - SKIP_PYTHON_BINDINGS_TESTS: "0" - goVersion: "1.17" GOARCH: "amd64" SKIP_PYTHON_BINDINGS_TESTS: "0" - goVersion: "1.18" GOARCH: "amd64" SKIP_PYTHON_BINDINGS_TESTS: "0" + - goVersion: "1.19" + GOARCH: "amd64" + SKIP_PYTHON_BINDINGS_TESTS: "0" runs-on: ubuntu-latest steps: - uses: actions/checkout@v2