diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2020-04-18 00:55:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-18 00:55:56 +0200 |
commit | 17c0664d261e9177bf74f79343d956cb7be78226 (patch) | |
tree | 1e43fe6fb5127b836563dd2684cbc4d22265acf1 /.github | |
parent | 1dffefe667760113d23f89e65b066a78b9d7e0b0 (diff) | |
download | feed2imap-go-17c0664d261e9177bf74f79343d956cb7be78226.tar.gz feed2imap-go-17c0664d261e9177bf74f79343d956cb7be78226.tar.bz2 feed2imap-go-17c0664d261e9177bf74f79343d956cb7be78226.zip |
Create go.yml
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/go.yml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..714744a --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,37 @@ +name: Go + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +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@v2 + + - name: Get dependencies + run: | + go get -v -t -d ./... + if [ -f Gopkg.toml ]; then + curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh + dep ensure + fi + + - name: Build + run: go build -v . + + - name: Test + run: go test -v . |