diff --git a/.github/workflows/build-linux.yaml b/.github/workflows/build-linux.yaml new file mode 100644 index 0000000..5561f9a --- /dev/null +++ b/.github/workflows/build-linux.yaml @@ -0,0 +1,19 @@ +name: build-linux +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-go@v2 + with: + go-version: '^1.13.1' # The Go version to download (if necessary) and use. + - run: go version + - name: Install dependecies + run: | + make git2go + go get github.com/mattn/goveralls + - name: Build + run: | + go get -d ./... + $HOME/gopath/bin/goveralls -v -flags=--tags=static -service=travis-ci \ No newline at end of file diff --git a/AUTHORS b/AUTHORS index c17d911..2a62c59 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,3 +1,4 @@ Michael Schenk Brandon Grady Craig Wohlfeil +Tavo Annus \ No newline at end of file