From 45db4ef786e040500ca2529036ffbf635c243b1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernhard=20Fr=C3=B6hlich?= Date: Sun, 20 Oct 2019 13:21:39 +0200 Subject: [PATCH 1/2] Play with GitHub Actions --- .github/workflows/go.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/go.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..d4e8199 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,24 @@ +name: Go +on: [push] +jobs: + + build: + name: Build + runs-on: ubuntu-latest + steps: + + - name: Set up Go 1.13 + uses: actions/setup-go@v1 + with: + go-version: 1.13 + id: go + + - name: Check out code into the Go module directory + uses: actions/checkout@v1 + + - name: Get dependencies + run: | + go get -v -t -d ./... + + - name: Build + run: go build -v . From eb4a6b9eb6e2868fb6fae8bed4b9249b04b67cf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernhard=20Fr=C3=B6hlich?= Date: Sun, 20 Oct 2019 13:24:42 +0200 Subject: [PATCH 2/2] Remove Travis CI --- .travis.yml | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index d2068bd..0000000 --- a/.travis.yml +++ /dev/null @@ -1,3 +0,0 @@ -language: go - -go: "1.13"