Skip to content

Bump golang.org/x/crypto from 0.26.0 to 0.27.0 #47

Bump golang.org/x/crypto from 0.26.0 to 0.27.0

Bump golang.org/x/crypto from 0.26.0 to 0.27.0 #47

Workflow file for this run

name: Integration Test
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: Build
run: |
go version
CGO_ENABLED=0 go build -v .
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: run tests
run: |
go vet ./...
go test ./... -v
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: setup go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: lint
uses: golangci/golangci-lint-action@v6
with:
args: --timeout=5m