Skip to content

Bump golang.org/x/crypto from 0.35.0 to 0.45.0 in /go in the go_modules group across 1 directory #127

Bump golang.org/x/crypto from 0.35.0 to 0.45.0 in /go in the go_modules group across 1 directory

Bump golang.org/x/crypto from 0.35.0 to 0.45.0 in /go in the go_modules group across 1 directory #127

Workflow file for this run

name: go-presubmit
on:
push:
branches: ['master']
pull_request:
paths: ['go/**', '.github/workflows/presubmit-go.yml']
workflow_dispatch: {}
defaults:
run:
working-directory: go
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: gofmt
run: test -z "$(gofmt -d . | tee >&2)"
- name: golint
run: |
go install golang.org/x/lint/golint@latest
$(go env GOPATH)/bin/golint -set_exit_status=1 ./...
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run tests
run: go test ./...