Skip to content

Bump golang.org/x/crypto from 0.40.0 to 0.45.0 #59

Bump golang.org/x/crypto from 0.40.0 to 0.45.0

Bump golang.org/x/crypto from 0.40.0 to 0.45.0 #59

Workflow file for this run

name: Go Format Check
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Check formatting
run: |
if [ -n "$(gofmt -l .)" ]; then
echo "The following files are not formatted correctly:"
gofmt -l .
echo ""
echo "Please run 'gofmt -w .' to format your code"
exit 1
fi