Skip to content

Commit a9de5fa

Browse files
Thomas StrombergThomas Stromberg
authored andcommitted
simplify tests
1 parent 6a6b681 commit a9de5fa

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,14 @@ on:
99
jobs:
1010
test:
1111
runs-on: ubuntu-latest
12-
strategy:
13-
matrix:
14-
go-version: [ '1.22', '1.23' ]
1512

1613
steps:
1714
- uses: actions/checkout@v4
1815

1916
- name: Set up Go
2017
uses: actions/setup-go@v5
2118
with:
22-
go-version: ${{ matrix.go-version }}
19+
go-version: '1.25'
2320

2421
- name: Run tests
2522
run: make test

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.PHONY: test integration lint build clean
22

33
test:
4-
go test -v -race -cover ./...
4+
go test -race -cover ./...
55

66
DS9_TEST_PROJECT ?= integration-testing-476513
77
DS9_TEST_DATABASE ?= ds9-test

0 commit comments

Comments
 (0)