Skip to content

Add section removla in case of pageOverflow #83

Add section removla in case of pageOverflow

Add section removla in case of pageOverflow #83

Workflow file for this run

name: Lint
on:
push:
jobs:
lint:
name: Run Linter
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Install golangci-lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.54.2
- name: Run linter
run: make lint
- name: Check dependency
run: go mod tidy && git diff --exit-code