Skip to content

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

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

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

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
go-version: [1.19.x, 1.20.x, 1.21.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- run: go version
- run: go get -t -v ./...
- run: GOOS=linux go build
- run: GOOS=darwin go build
- run: GOOS=freebsd go build
- run: GOOS=windows go build
- run: GOARCH=386 go build