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 9167842 commit 4ae723cCopy full SHA for 4ae723c
.github/workflows/go.yml
@@ -0,0 +1,22 @@
1
+name: Go
2
+
3
+on:
4
+ push:
5
+ branches: [ "2024-update" ]
6
+ pull_request:
7
8
9
+jobs:
10
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
16
+ - name: Set up Go
17
+ uses: actions/setup-go@v4
18
+ with:
19
+ go-version: '1.22'
20
21
+ - name: Build
22
+ run: go version
up.yml
@@ -1153,3 +1153,10 @@ tasks:
1153
do: |
1154
curl --silent 'https://api.github.com/repos/upcmd/up' -H 'Accept: application/vnd.github.preview' | grep stargazers_count
1155
reg: result
1156
1157
1158
1159
+ run: go build -v ./...
1160
1161
+ - name: Test
1162
+ run: go test -v ./...
0 commit comments