Skip to content

Merge pull request #21 from punitkr03/api/chess #5

Merge pull request #21 from punitkr03/api/chess

Merge pull request #21 from punitkr03/api/chess #5

Workflow file for this run

name: Go Linter CI
on:
push:
branches:
- api/basketball
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21.4
- name: Install golint
run: |
cd src/api/basketball
go mod tidy
go get -u golang.org/x/lint/golint
- name: Run golint
run: golint