We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a6b681 commit a9de5faCopy full SHA for a9de5fa
.github/workflows/test.yml
@@ -9,17 +9,14 @@ on:
9
jobs:
10
test:
11
runs-on: ubuntu-latest
12
- strategy:
13
- matrix:
14
- go-version: [ '1.22', '1.23' ]
15
16
steps:
17
- uses: actions/checkout@v4
18
19
- name: Set up Go
20
uses: actions/setup-go@v5
21
with:
22
- go-version: ${{ matrix.go-version }}
+ go-version: '1.25'
23
24
- name: Run tests
25
run: make test
Makefile
@@ -1,7 +1,7 @@
1
.PHONY: test integration lint build clean
2
3
4
- go test -v -race -cover ./...
+ go test -race -cover ./...
5
6
DS9_TEST_PROJECT ?= integration-testing-476513
7
DS9_TEST_DATABASE ?= ds9-test
0 commit comments