name: Integration tests on: push jobs: test: strategy: matrix: go-version: [ 1.16.x ] platform: [ ubuntu-latest ] runs-on: ${{ matrix.platform }} steps: - name: Install Go uses: actions/setup-go@v1 with: go-version: ${{ matrix.go-version }} - name: Checkout code uses: actions/checkout@v2 - name: Run tests run: go test -v -cover -coverpkg=./... ./integration_tests