Skip to content

Bump golang.org/x/crypto from 0.21.0 to 0.25.0 #17

Bump golang.org/x/crypto from 0.21.0 to 0.25.0

Bump golang.org/x/crypto from 0.21.0 to 0.25.0 #17

Workflow file for this run

name: Build
on:
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.20"
check-latest: true
cache: true
- name: Install swaggo
run: go install github.com/swaggo/swag/cmd/[email protected]
- name: Install swagger
run: go install github.com/go-swagger/go-swagger/cmd/[email protected]
- name: Generate
run: go generate ./...
- name: Build
run: go build -v ./...