diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..4368a52 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,11 @@ +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-go@v2-beta + with: + go-version: "^1.13.1" # The Go version to download (if necessary) and use. + - run: go version && GO111MODULE=on go build -o onyxia-cli main.go