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 8d9b458 commit 8e673efCopy full SHA for 8e673ef
.github/dependabot.yml
@@ -0,0 +1,7 @@
1
+version: 2
2
+updates:
3
+ - package-ecosystem: gomod
4
+ directory: /
5
+ open-pull-requests-limit: 10
6
+ schedule:
7
+ interval: monthly
.github/workflows/test.yml
@@ -0,0 +1,34 @@
+name: Test
+
+on:
+ workflow_dispatch:
+ push:
+ branches: [ "master", "dev" ]
+ pull_request:
8
9
10
+permissions:
11
+ contents: read
12
13
+jobs:
14
15
+ build:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v4
19
20
+ - name: Set up Go
21
+ uses: actions/setup-go@v4
22
+ with:
23
+ go-version: '1.21'
24
25
+ - name: Set up deps
26
+ run: |
27
+ sudo apt-get install -y gcc flex bison make
28
29
+ - name: Build
30
+ run: make build
31
32
+ - name: Test
33
+ run: go test -v ./...
34
0 commit comments