Skip to content

chore(deps): Bump golang.org/x/crypto from 0.32.0 to 0.33.0 #330

chore(deps): Bump golang.org/x/crypto from 0.32.0 to 0.33.0

chore(deps): Bump golang.org/x/crypto from 0.32.0 to 0.33.0 #330

Workflow file for this run

---
name: Ci
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]
jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Setup Go
uses: actions/setup-go@v4
with:
go-version-file: ./go.mod
-
name: Cache
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
-
name: Build
run: go build -v ./...
-
name: Test
run: go test -v ./... -cover
-
name: Docker
run: docker build .