Skip to content

chore(deps): bump golang.org/x/crypto from 0.1.0 to 0.17.0 #47

chore(deps): bump golang.org/x/crypto from 0.1.0 to 0.17.0

chore(deps): bump golang.org/x/crypto from 0.1.0 to 0.17.0 #47

Workflow file for this run

name: device-sdk-go
on:
push:
branches: [ master ]
pull_request:
branches: [ '*' ]
jobs:
build:
name: go-vet-and-test
runs-on: ubuntu-18.04
steps:
- name: Set up Go 1.13.3
uses: actions/setup-go@v1
with:
go-version: 1.13.3
id: go
- name: Cache go modules
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: v3-go-modules
restore-keys: v3-go-modules
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: vet and test v3
run: |
cd v3 ; go vet ./... ; cd -
cd v3 ; go test ./... ; cd -