Skip to content

Commit 889f326

Browse files
committed
Add CI
1 parent 57a2f74 commit 889f326

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)