Skip to content

chore run go lint

chore run go lint #1

Workflow file for this run

name: Lint
# Lint runs golangci-lint over the entire Desmos repository.
# This workflow is run on every pull request and push to master.
# The `golangci` will pass without running if no *.{go, mod, sum} files have been changed.
on:
pull_request:
push:
jobs:
GolangCI:
name: golangci-lint
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Setup Go 🧰
uses: actions/setup-go@v5
with:
go-version: 1.19
- name: Compute diff 📜
uses: technote-space/get-diff-action@v6.1.2
with:
SUFFIX_FILTER: |
.go
.mod
.sum
- name: Run lint ✅
if: "env.GIT_DIFF != ''"
run: make lint