Răsfoiți Sursa

Add Go 1.18 to GitHub Actions

Frédéric Guillot 4 ani în urmă
părinte
comite
40b54b458d
2 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 1 1
      .github/workflows/ci.yml
  2. 1 1
      .github/workflows/linters.yml

+ 1 - 1
.github/workflows/ci.yml

@@ -14,7 +14,7 @@ jobs:
       max-parallel: 4
       matrix:
         os: [ubuntu-latest, windows-latest, macOS-latest]
-        go-version: [1.16, 1.17]
+        go-version: [1.16, 1.17, 1.18]
     steps:
     - name: Set up Go
       uses: actions/setup-go@v2

+ 1 - 1
.github/workflows/linters.yml

@@ -25,7 +25,7 @@ jobs:
       - uses: actions/checkout@v2
       - uses: actions/setup-go@v2
         with:
-          go-version: 1.16
+          go-version: 1.17
       - uses: golangci/golangci-lint-action@v2
         with:
           args: --skip-dirs tests --disable errcheck --enable sqlclosecheck --enable misspell --enable gofmt --enable goimports --enable whitespace