We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 547135c commit c613be7Copy full SHA for c613be7
3 files changed
.github/workflows/build.yml
@@ -0,0 +1,24 @@
1
+name: Ghp Build
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
15
+ - name: Set up Go
16
+ uses: actions/setup-go@v2
17
+ with:
18
+ go-version: 1.17
19
20
+ - name: Build
21
+ run: go build -v ./...
22
23
+ - name: Test
24
+ run: go test -v ./...
.goreleaser.yml
@@ -1,5 +1,5 @@
# Make sure to check the documentation at http://goreleaser.com
-project_name: gh
+project_name: ghp
before:
hooks:
- go mod download
go.mod
@@ -1,4 +1,4 @@
-module gh
+module ghp
go 1.17
0 commit comments