Skip to content

Commit 19c3077

Browse files
committed
ci(test): run tests on PRs and pushes to main
1 parent feba1b2 commit 19c3077

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
name: ci
3+
4+
on:
5+
push:
6+
branches:
7+
- main
8+
pull_request:
9+
10+
jobs:
11+
# TODO: Lint
12+
13+
test:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v6
18+
with:
19+
fetch-depth: 0
20+
21+
- uses: actions/setup-go@v6
22+
with:
23+
go-version: '1.25'
24+
25+
- name: Run tests
26+
run: make test

0 commit comments

Comments
 (0)