Skip to content

Bump golang.org/x/crypto from 0.0.0-20180904163835-0709b304e793 to 0.35.0 #6

Bump golang.org/x/crypto from 0.0.0-20180904163835-0709b304e793 to 0.35.0

Bump golang.org/x/crypto from 0.0.0-20180904163835-0709b304e793 to 0.35.0 #6

Workflow file for this run

name: validation
on:
push:
branches: [master, dev]
pull_request:
branches: [master, dev]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
go: ["1.24"]
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Lint
uses: golangci/golangci-lint-action@v6.0.1
with:
version: latest
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Benchmark
run: go test -bench=.