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 d02e9cb commit f60b612Copy full SHA for f60b612
.github/workflows/test.yml
@@ -0,0 +1,26 @@
1
+name: Go Tests
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ name: Run Tests
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v4
16
17
+ - name: Set up Go
18
+ uses: actions/setup-go@v4
19
+ with:
20
+ go-version: '1.23.2'
21
22
+ - name: Install dependencies
23
+ run: go mod download
24
25
+ - name: Run tests
26
+ run: go test -v ./...
go.mod
@@ -1,6 +1,6 @@
module github.com/logdyhq/logdy-core
-go 1.21.4
+go 1.23.2
require (
github.com/gorilla/websocket v1.5.1
0 commit comments