Skip to content

Commit bf0300f

Browse files
authored
Merge pull request #1 from InseeFrLab/setup-ci
Setup CI
2 parents e45e1f6 + 5386e85 commit bf0300f

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
on: [push, pull_request]
2+
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- uses: actions/setup-go@v2-beta
9+
with:
10+
go-version: "^1.13.1" # The Go version to download (if necessary) and use.
11+
- run: go version && GO111MODULE=on go build -o onyxia-cli main.go

0 commit comments

Comments
 (0)