Skip to content

Commit a33d139

Browse files
committed
ghactions: remove strategy matrix
The goal is to allow branch protection rule with these status checks, but we don't want to have to modify every time we update the go version (as they're referred to with their go version included when startegy matrix is used)
1 parent 4a0bd67 commit a33d139

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

.github/workflows/pull_request.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ jobs:
1010
test:
1111
name: test
1212
runs-on: ubuntu-latest
13-
strategy:
14-
matrix:
15-
go: ['1.18']
1613
steps:
1714
- uses: actions/checkout@v2
1815
- name: Set up Go

.github/workflows/pull_request_e2e.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,13 @@ jobs:
1111
e2e-tests:
1212
name: e2e-tests
1313
runs-on: ubuntu-latest
14-
strategy:
15-
matrix:
16-
go: ['1.18']
1714
steps:
1815
- name: install make
1916
run: sudo apt-get install make
2017
- name: set up go 1.x
2118
uses: actions/setup-go@v2
2219
with:
23-
go-version: ${{ matrix.go }}
20+
go-version: 1.18
2421
- name: checkout
2522
uses: actions/checkout@v2
2623
- name: run end-to-end tests

0 commit comments

Comments
 (0)