Skip to content

build(deps): bump golang.org/x/crypto from 0.51.0 to 0.52.0 (#521) #2115

build(deps): bump golang.org/x/crypto from 0.51.0 to 0.52.0 (#521)

build(deps): bump golang.org/x/crypto from 0.51.0 to 0.52.0 (#521) #2115

Workflow file for this run

name: Go
on: [push]
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}${{ github.ref_name != github.event.repository.default_branch && github.ref || github.run_id }}
cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch }}
jobs:
test:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Install Go
uses: actions/setup-go@v6.4.0
with:
go-version-file: go.mod
- name: Environment information
run: |
uname -a
go version
go env
- name: golangci-lint
if: matrix.platform == 'ubuntu-latest'
uses: golangci/golangci-lint-action@ba0d7d2ec06a0ea1cb5fa41b2e4a3ab91d21278a # v9.3.0
- name: Test
run: go test -vet=off -count=1 ./...
- name: Test with -race
run: go test -vet=off -race -count=1 ./...
- name: Run
run: make run