-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (29 loc) · 817 Bytes
/
beads-merge.yml
File metadata and controls
35 lines (29 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: beads-merge
on:
push:
paths:
- "beads-merge/**"
- ".github/workflows/beads-merge.yml"
pull_request:
paths:
- "beads-merge/**"
- ".github/workflows/beads-merge.yml"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Set up Go
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
with:
go-version: "1.24.7"
cache-dependency-path: beads-merge/go.sum
- name: Run tests
working-directory: beads-merge
run: go test ./... -v
- name: Build
working-directory: beads-merge
run: go build -o beads-merge .