Skip to content

fix - changed trigger for lint GA #1

fix - changed trigger for lint GA

fix - changed trigger for lint GA #1

Workflow file for this run

name: Lint Code
on:
push:
branches: [ main, lint ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23.1
- name: Install Linter
run: go install golang.org/x/lint/golint
- name: Lint the project
run: |
golint ./...