name: ci on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build: name: Build runs-on: ubuntu-latest steps: - name: Set up Go 1.x uses: actions/setup-go@v2 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 ./... - name: Build run: go build -v . - name: Test run: go test -v . release: if: ${{ github.ref == 'refs/heads/main' }} runs-on: ubuntu-latest needs: build steps: - name: Set outputs id: vars run: echo "::set-output name=sha_short::$(echo ${{ github.sha }} | cut -c1-4)"