aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2022-11-29 10:21:55 +0100
committerGitHub <noreply@github.com>2022-11-29 10:21:55 +0100
commit513254937c5aa29a1b8ce73ac14b30695fee0ce5 (patch)
tree6efa0d98f54a7ae39f3fbcc4e96e18d0e42bab64
parent0966a009e12e0ebd5a84a181422c63c97929739a (diff)
parent67fb0c07842a7e7d4f1efdced4bf6586ddabcd51 (diff)
downloadgo-git-513254937c5aa29a1b8ce73ac14b30695fee0ce5.tar.gz
Merge pull request #622 from go-git/test-1.19
.github: update go version
-rw-r--r--.github/workflows/test.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 1644dcf..befb2c8 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -5,7 +5,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- go-version: [1.15.x, 1.16.x]
+ go-version: [1.18.x, 1.19.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
@@ -33,14 +33,14 @@ jobs:
run: make test-coverage
- name: Convert coverage to lcov
- if: matrix.platform == 'ubuntu-latest' && matrix.go-version == '1.14.x'
+ if: matrix.platform == 'ubuntu-latest' && matrix.go-version == '1.19.x'
uses: jandelgado/gcov2lcov-action@v1.0.0
with:
infile: coverage.out
outfile: coverage.lcov
- name: Coveralls
- if: matrix.platform == 'ubuntu-latest' && matrix.go-version == '1.14.x'
+ if: matrix.platform == 'ubuntu-latest' && matrix.go-version == '1.19.x'
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}