build(deps): bump golang.org/x/crypto from 0.0.0-20220513210258-46612604a0f9 to 0.17.0 #610
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
name: "Build" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go: ["1.17"] | |
steps: | |
- name: Updating ... | |
run: sudo apt-get -qq update | |
- uses: actions/checkout@v3 | |
- name: Setup go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Go build (source) | |
run: go build ./... | |
- name: Go build (tests) | |
run: go test ./... | |
- name: Go vet | |
run: go vet ./... |