Skip to content

Commit

Permalink
ghactions: remove strategy matrix
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
jotak authored and shach33 committed Jan 10, 2023
1 parent 68d5e65 commit 99b7925
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ jobs:
test:
name: test
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.18']
steps:
- uses: actions/checkout@v2
- name: Set up Go
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/pull_request_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,13 @@ jobs:
e2e-tests:
name: e2e-tests
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.18']
steps:
- name: install make
run: sudo apt-get install make
- name: set up go 1.x
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
go-version: 1.18
- name: checkout
uses: actions/checkout@v2
- name: run end-to-end tests
Expand Down

0 comments on commit 99b7925

Please sign in to comment.