Skip to content

Commit 8e42231

Browse files
committed
Add workflow
1 parent 886bee7 commit 8e42231

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/build.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
on:
2+
pull_request:
3+
push:
4+
branches:
5+
- main
6+
release:
7+
types:
8+
- created
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-20.04
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-go@v2
16+
with:
17+
go-version: '^1.17.8'
18+
- run: go build ./cmd/git-backup

0 commit comments

Comments
 (0)