Skip to content

refactor: remove Prometheus errors counts #39

refactor: remove Prometheus errors counts

refactor: remove Prometheus errors counts #39

Workflow file for this run

name: Lint
# Lint runs golangci-lint over the entire Juno 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:
branches:
- cosmos/*
jobs:
Cleanup-runs:
runs-on: ubuntu-latest
steps:
- name: Cleanup 🧹
uses: rokroskar/workflow-run-cleanup-action@master
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/main'"
GolangCI:
name: golangci-lint
runs-on: ubuntu-latest
timeout-minutes: 6
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Compute diff 📜
uses: technote-space/get-diff-action@v6.1.2
with:
PATTERNS: |
**/**.go
go.mod
go.sum
- name: Setup Go 🧰
if: "env.GIT_DIFF != ''"
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Run lint ✅
if: "env.GIT_DIFF != ''"
run: make lint