Skip to content

Commit 81f5962

Browse files
Update CODEOWNERS, matrix go test versions
1 parent e5c1908 commit 81f5962

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
@Workiva/skreams
1+
/.github/ @Workiva/skreams

.github/workflows/tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ permissions:
1313
contents: read
1414
id-token: write
1515

16-
env:
17-
GOLANG_VERSION: "1.16"
18-
1916
jobs:
2017
Tests:
2118
runs-on: ubuntu-latest
19+
matrix:
20+
go: [ '1.15', 'stable' ]
21+
name: Tests on Go ${{ matrix.go }}
2222
steps:
2323
- name: Checkout Repo
2424
uses: actions/[email protected]
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup Go
2929
uses: actions/setup-go@v4
3030
with:
31-
go-version: ${{ env.GOLANG_VERSION }}
31+
go-version: ${{ matrix.go }}
3232

3333
- name: Run Tests
3434
timeout-minutes: 10

0 commit comments

Comments
 (0)