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 2389eee commit 9b82eadCopy full SHA for 9b82ead
.github/workflows/go.yml
@@ -0,0 +1,28 @@
1
+name: Go
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
10
+jobs:
11
+ build_and_test:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Setup go-task
15
+ uses: pnorton5432/setup-task@v1
16
+ with:
17
+ task-version: 3.29.1
18
+ - name: Checkout
19
+ uses: actions/checkout@v4
20
+ - name: Setup Go
21
+ uses: actions/setup-go@v5
22
23
+ go-version: 'stable'
24
+ check-latest: true
25
+ - name: Task Build for mage
26
+ run: task build-gg
27
+ - name: Test with gg build
28
+ run: ./gg build
0 commit comments