We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5c1908 commit 81f5962Copy full SHA for 81f5962
.github/CODEOWNERS
@@ -1 +1 @@
1
-@Workiva/skreams
+/.github/ @Workiva/skreams
.github/workflows/tests.yaml
@@ -13,12 +13,12 @@ permissions:
13
contents: read
14
id-token: write
15
16
-env:
17
- GOLANG_VERSION: "1.16"
18
-
19
jobs:
20
Tests:
21
runs-on: ubuntu-latest
+ matrix:
+ go: [ '1.15', 'stable' ]
+ name: Tests on Go ${{ matrix.go }}
22
steps:
23
- name: Checkout Repo
24
uses: actions/[email protected]
@@ -28,7 +28,7 @@ jobs:
28
- name: Setup Go
29
uses: actions/setup-go@v4
30
with:
31
- go-version: ${{ env.GOLANG_VERSION }}
+ go-version: ${{ matrix.go }}
32
33
- name: Run Tests
34
timeout-minutes: 10
0 commit comments