Skip to content
Snippets Groups Projects
Commit a33d139a authored by Joel Takvorian's avatar Joel Takvorian
Browse files

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)
parent 4a0bd67d
No related branches found
No related tags found
No related merge requests found
...@@ -10,9 +10,6 @@ jobs: ...@@ -10,9 +10,6 @@ jobs:
test: test:
name: test name: test
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.18']
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Set up Go - name: Set up Go
......
...@@ -11,16 +11,13 @@ jobs: ...@@ -11,16 +11,13 @@ jobs:
e2e-tests: e2e-tests:
name: e2e-tests name: e2e-tests
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.18']
steps: steps:
- name: install make - name: install make
run: sudo apt-get install make run: sudo apt-get install make
- name: set up go 1.x - name: set up go 1.x
uses: actions/setup-go@v2 uses: actions/setup-go@v2
with: with:
go-version: ${{ matrix.go }} go-version: 1.18
- name: checkout - name: checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: run end-to-end tests - name: run end-to-end tests
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment