Skip to content

3 add league endpoints #8

3 add league endpoints

3 add league endpoints #8

Workflow file for this run

name: Pull Request Workflow
on:
pull_request:
jobs:
check-formatting:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.22.0"
- name: Install Dependencies
run: make init
- name: Vet Code
run: make vet
- name: Check Go Formatting
run: if [ "$(gofmt -l . | wc -l)" -gt 0 ]; then exit 1; fi