Skip to content

Commit c587e55

Browse files
authored
Create main.yml
1 parent 7c3589d commit c587e55

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/main.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
workflow_dispatch:
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
16+
- name: Install Go
17+
uses: actions/setup-go@v4
18+
with:
19+
go-version: "1.20.x"
20+
cache: true
21+
22+
- name: build
23+
run: |
24+
go build

0 commit comments

Comments
 (0)