Skip to content

Commit fc0f02e

Browse files
committed
ci: rename
1 parent 659379e commit fc0f02e

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.github/workflows/test.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches: [ "**" ]
6+
pull_request:
7+
branches: [ "**" ]
8+
9+
jobs:
10+
build:
11+
name: Build and Test
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout code
16+
uses: actions/checkout@v4
17+
18+
- name: Setup Go
19+
uses: actions/setup-go@v5
20+
with:
21+
go-version: '1.24'
22+
23+
- name: Display Go version
24+
run: go version
25+
26+
- name: Run make fmt
27+
run: make fmt
28+
29+
- name: Run make mocks
30+
run: make mocks
31+
32+
- name: Run make build
33+
run: make build
34+
35+
- name: Run make test
36+
run: make test

0 commit comments

Comments
 (0)