We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c1abe2 commit 68de5f3Copy full SHA for 68de5f3
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,47 @@
1
+name: CI
2
+on:
3
+ push:
4
+ tags:
5
+ - v*
6
+ branches:
7
+ - main
8
+ - release-*
9
+ workflow_dispatch:
10
+ pull_request:
11
+ types: [opened, synchronize]
12
13
14
15
+
16
+jobs:
17
18
+ test:
19
+ name: test and run
20
+ runs-on: ${{ matrix.os }}
21
+ strategy:
22
+ matrix:
23
+ os: [ubuntu-latest, macos-latest]
24
25
+ steps:
26
27
+ - name: Set up Go
28
+ uses: actions/setup-go@v6
29
+ with:
30
+ go-version: 'stable'
31
+ id: go
32
33
+ - name: Check out code
34
+ uses: actions/checkout@v6
35
36
+ fetch-depth: 1
37
38
+ - name: run checks
39
+ run: make check
40
+ shell: bash
41
42
+ - name: run install and validate
43
+ run: |
44
+ ./install.sh
45
+ type builbo
46
47
0 commit comments