Skip to content

Bump golang.org/x/crypto #117

Bump golang.org/x/crypto

Bump golang.org/x/crypto #117

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: [ '1.19', '1.18' ]
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
steps:
- uses: actions/checkout@v2
- name: Setup go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Go Build
run: go build -gcflags="-e" ./cmd/spinmd
env:
CGO_ENABLED: 0
- name: Go Test
run: go test -v ./...
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: golangci/golangci-lint-action@v3
with:
version: v1.52.2
args: --fast