Skip to content

Commit 0272088

Browse files
committed
add github CI step
1 parent 7a9f798 commit 0272088

File tree

2 files changed

+24
-8
lines changed

2 files changed

+24
-8
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: "build"
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- "master"
7+
- "stable"
8+
push:
9+
branches:
10+
- "master"
11+
- "stable"
12+
13+
jobs:
14+
build:
15+
runs-on: "ubuntu-22.04"
16+
steps:
17+
- name: "checkout repository"
18+
uses: "actions/checkout@v3"
19+
- name: "setup go"
20+
uses: "actions/setup-go@v3"
21+
with:
22+
go-version: "1.23"
23+
- name: "make test"
24+
run: "make test"

0 commit comments

Comments
 (0)