Skip to content

build(deps): bump golang.org/x/crypto from 0.51.0 to 0.53.0 (#84) #42

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

build(deps): bump golang.org/x/crypto from 0.51.0 to 0.53.0 (#84) #42

Workflow file for this run

name: Unit Tests
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
arch: [x64, arm64]
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
fetch-depth: 1
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
check-latest: true
cache: true
- name: Install dependencies
run: go get -v ./...
- name: Run tests
run: go test ./...