Skip to content

server: bump github.com/go-co-op/gocron/v2 from 2.11.0 to 2.12.1 in /server #5

server: bump github.com/go-co-op/gocron/v2 from 2.11.0 to 2.12.1 in /server

server: bump github.com/go-co-op/gocron/v2 from 2.11.0 to 2.12.1 in /server #5

name: Test PR (server)
on:
pull_request:
branches:
- "**"
tags-ignore:
- v*
paths:
- ".github/workflows/test-pr-server.yml"
- "server/**"
jobs:
format_check_go:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
- name: gofmt test
run: |
outp=$(gofmt -l .)
if [ -n "$outp" ]; then
echo "Need to fix formatting!"
echo "$outp"
exit 1
else
echo "Everything looks formatted"
exit 0
fi