diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2022-11-29 10:11:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-29 10:11:56 +0100 |
commit | 67fb0c07842a7e7d4f1efdced4bf6586ddabcd51 (patch) | |
tree | 6efa0d98f54a7ae39f3fbcc4e96e18d0e42bab64 /.github | |
parent | 0966a009e12e0ebd5a84a181422c63c97929739a (diff) | |
download | go-git-67fb0c07842a7e7d4f1efdced4bf6586ddabcd51.tar.gz |
.github: update go version
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/test.yml | 6 |
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 }} |