From 0a15590bf0148e86be03cc00016045cf42e6ee0e Mon Sep 17 00:00:00 2001 From: "Guillaume J. Charmes" Date: Tue, 31 Oct 2023 10:55:31 -0400 Subject: [PATCH] Skip tests for go1.6. --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dab2c73..4a949d3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -48,5 +48,8 @@ jobs: - name: Build run: go build -v - - name: Test + # Skip tests for 1.6 as we use modern Go. + # If the main lib builds and tests pass on other versions, we are good. + - if: ${{ matrix.go_version != '1.6.x' }} + name: Test run: go test -v