Skip to content

Merge pull request #39 from OussamaM1/Cleanup-code #32

Merge pull request #39 from OussamaM1/Cleanup-code

Merge pull request #39 from OussamaM1/Cleanup-code #32

Workflow file for this run

name: golangci-lint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Add missing dependencies
run: go mod tidy
- name: Verify dependencies
run: go mod verify
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
with:
version: v1.57