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 96441ef commit 90a7178Copy full SHA for 90a7178
.github/release.yml
@@ -0,0 +1,15 @@
1
+changelog:
2
+ categories:
3
+ - title: 💥 Breaking changes
4
+ labels:
5
+ - breaking-change
6
+ - title: ⚡️ Improvements
7
8
+ - enhancement
9
+ - documentation
10
+ - title: 👨🔧 Fixes
11
12
+ - bugs
13
+ - title: 🎨 Other changes
14
15
+ - "*"
.github/workflows/tests.yml
@@ -0,0 +1,20 @@
+name: Test
+on:
+ push:
+ branches: [ main ]
+ pull_request:
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - name: Setup Go
+ uses: actions/setup-go@v5
+ with:
16
+ go-version: '1.21.3'
17
+ - name: Install dependencies
18
+ run: go get .
19
+ - name: Test with the Go CLI
20
+ run: go test ./...
0 commit comments