Skip to content

Bump go.opencensus.io from 0.22.4 to 0.24.0 #296

Bump go.opencensus.io from 0.22.4 to 0.24.0

Bump go.opencensus.io from 0.22.4 to 0.24.0 #296

Workflow file for this run

name: PR
on:
pull_request:
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
args: --timeout 5m
only-new-issues: true
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.x"
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- run: make test
- name: uncommitted changes?
if: ${{ always() }}
run: git diff --exit-code --stat