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 76ab968 commit ca06ca8Copy full SHA for ca06ca8
.github/workflows/go.yml
@@ -0,0 +1,28 @@
1
+---
2
+name: Go Test
3
+
4
+on:
5
+ # push:
6
+ # branches:
7
+ # - main
8
+ # paths:
9
+ # - 'go-algorithm/**'
10
+ # schedule:
11
+ # - cron: '0 0 * * *'
12
+ workflow_dispatch:
13
14
+jobs:
15
+ build:
16
+ runs-on: ubuntu-latest
17
18
+ steps:
19
+ - uses: actions/checkout@v4
20
21
+ - name: Setup Go
22
+ uses: actions/setup-go@v5
23
+ with:
24
+ go-version: '1.22'
25
26
+ - name: Test
27
+ working-directory: ${{github.workspace}}/go-algorithm
28
+ run: go test -v ./...
0 commit comments