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
Branches
Tags
No related merge requests found
......@@ -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
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment