Skip to content

chore(deps): update module golang.org/x/crypto to v0.52.0 [security] #80

chore(deps): update module golang.org/x/crypto to v0.52.0 [security]

chore(deps): update module golang.org/x/crypto to v0.52.0 [security] #80

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Setup Go
uses: actions/setup-go@v7
with:
go-version-file: go.mod
- name: Build
run: go build ./...
- name: Test
run: go test ./...
- name: Vet
run: go vet ./...
- name: Check formatting
run: |
if [ -n "$(gofmt -l .)" ]; then
echo "The following files are not formatted correctly:"
gofmt -l .
exit 1
fi