chore(deps): bump golang.org/x/crypto from 0.15.0 to 0.16.0 #21
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: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
steps: | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.18 | |
- run: go version | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Examine source code for Linux AMD | |
run: GOOS=linux GOARCH=amd64 go vet -v ./... | |
- name: Examine source code for MacOS AMD | |
run: GOOS=darwin GOARCH=amd64 go vet -v ./... | |
- name: Examine source code for Windows AMD | |
run: GOOS=windows GOARCH=amd64 go vet -v ./... | |
- name: Examine source code for Linux ARM | |
run: GOOS=linux GOARCH=arm64 go vet -v ./... | |
- name: Examine source code for MacOS ARM | |
run: GOOS=darwin GOARCH=arm64 go vet -v ./... | |
- name: Examine source code for Windows ARM | |
run: GOOS=windows GOARCH=arm64 go vet -v ./... | |
- name: Build | |
run: go build -v ./... | |
- name: Test | |
if: github.event_name == 'push' | |
run: go test -v -cover -coverprofile=coverage.txt -covermode=atomic ./... | |
- name: Upload coverage to Codecov | |
if: github.event_name == 'push' | |
run: bash <(curl -s https://codecov.io/bash) | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
- name: Update Go report card | |
if: github.event_name == 'push' | |
uses: creekorful/[email protected] |