We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57a2f74 commit 889f326Copy full SHA for 889f326
1 file changed
.github/workflows/ci.yaml
@@ -0,0 +1,29 @@
1
+
2
+name: ci
3
4
+on:
5
+ push:
6
+ branches:
7
+ - 'main'
8
+ pull_request: {}
9
+ # allow manual runs:
10
+ workflow_dispatch: {}
11
12
+jobs:
13
+ ci:
14
+ runs-on: ubuntu-latest
15
+ container:
16
+ image: ghcr.io/tillitis/tkey-builder:5rc2
17
+ steps:
18
+ - name: checkout
19
+ uses: actions/checkout@v4
20
+ with:
21
+ # fetch-depth: 0
22
+ persist-credentials: false
23
24
+ - name: Build
25
+ run: go build -buildvcs=false
26
27
+ - name: tests
28
+ run: go test ./...
29
0 commit comments