8000 Bump golang.org/x/crypto from 0.35.0 to 0.36.0 (#126) · tisba/fritz-tls@ad9bab9 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Bump golang.org/x/crypto from 0.35.0 to 0.36.0 (#126) #334

Bump golang.org/x/crypto from 0.35.0 to 0.36.0 (#126)

Bump golang.org/x/crypto from 0.35.0 to 0.36.0 (#126) #334

Workflow file for this run

name: Go
on:
push:
paths-ignore:
- "README.md"
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up Go
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5
with:
cache: true
go-version-file: "go.mod"
- name: Print Go Version
run: go version
- name: Build
run: go build -v .
- name: Test
run: go test ./...
- name: gofmt
run: |
if [ "$(find . -iname '*.go' | xargs gofmt -l)" ]
then
find . -iname '*.go' | xargs gofmt -d
exit 1
fi
- name: Run golangci-lint
uses: golangci/golangci-lint-action@1481404843c368bc19ca9406f87d6e0fc97bdcfd # v4
- name: Run goreleaser check
uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # v5
with:
version: latest
args: check
0