update readme to use new logo, point to Data Pipelines #86
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: [ push ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go: [ '1.15.x', '1.16.x', '1.17.x', 'tip' ] | |
name: Go ${{ matrix.go }} test | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install stable Go | |
if: matrix.go != 'tip' | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Install Go tip | |
if: matrix.go == 'tip' | |
run: | | |
curl -sL https://storage.googleapis.com/go-build-snap/go/linux-amd64/$(git ls-remote https://github.com/golang/go.git HEAD | awk '{print $1;}').tar.gz -o gotip.tar.gz | |
mkdir -p ~/sdk/gotip | |
tar -C ~/sdk/gotip -xzf gotip.tar.gz | |
echo "PATH=$HOME/go/bin:$HOME/sdk/gotip/bin/:$PATH" >> $GITHUB_ENV | |
- run: go version | |
- name: Setup gotestsum | |
run: | | |
curl -sSL "https://github.com/gotestyourself/gotestsum/releases/download/v0.6.0/gotestsum_0.6.0_linux_amd64.tar.gz" | sudo tar -xz -C /usr/local/bin gotestsum | |
- run: go test -race -coverprofile=coverage.txt -covermode=atomic | |
- name: Upload Coverage to Codecov | |
uses: codecov/codecov-action@v2 | |
env: | |
GO_VERSION: ${{ matrix.go }} | |
with: | |
files: ./coverage.txt | |
env_vars: GO_VERSION | |
flags: unittests | |
fail_ci_if_error: true |