Skip to content

Bump github.com/expr-lang/expr from 1.17.5 to 1.17.7 #70

Bump github.com/expr-lang/expr from 1.17.5 to 1.17.7

Bump github.com/expr-lang/expr from 1.17.5 to 1.17.7 #70

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