Skip to content

Commit

Permalink
.github/test.yml: Only test for supported Go versions (#10)
Browse files Browse the repository at this point in the history
* .github/test.yml: Only test for supported Go versions

* Update test.yml

* Update test.yml

* Update test.yml

* Update test.yml
  • Loading branch information
HaraldNordgren authored Jul 26, 2024
1 parent e0674f4 commit 4f1ae25
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.13.x, 1.14.x, 1.15.x]
go-version: [oldstable, stable]
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: go vet
Expand Down

0 comments on commit 4f1ae25

Please sign in to comment.