Update Go versions in CI workflow

Removed versions 1.18 and 1.19 from the Go matrix in the codecov.yml file. Now, CI workflow only tests for Go version '1.20'. This change simplifies the CI testing process and removes the change of running into CI failures due to rate limiting.
This commit is contained in:
Winni Neessen 2023-06-28 10:23:33 +02:00
parent a51644fbb6
commit 173c6eb8ec
Signed by: wneessen
GPG key ID: 5F3AF39B820C119D

View file

@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
go: [1.18, 1.19, '1.20']
go: ['1.20']
steps:
- name: Checkout Code
uses: actions/checkout@master