Skip to content

Commit

Permalink
ci: use super-linter instead of golangci-lint
Browse files Browse the repository at this point in the history
[super-linter](https://github.com/marketplace/actions/super-linter) is a
big GitHub action to perform lint in a lot of languages.

Use it to have Golang, Proto & YAML linting in this repo.
  • Loading branch information
fuhrmannb committed Aug 2, 2022
1 parent 0f47a1c commit fbc9cc5
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 20 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/golangci-lint.yml

This file was deleted.

53 changes: 53 additions & 0 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
---
#################################
#################################
## Super Linter GitHub Actions ##
#################################
#################################
name: Lint Code Base

#
# Documentation:
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
#

#############################
# Start the job on all push #
#############################
on:
push:
pull_request:
branches: [main]

###############
# Set the Job #
###############
jobs:
build:
# Name the Job
name: Lint Code Base
# Set the agent to run on
runs-on: ubuntu-latest

##################
# Load all steps #
##################
steps:
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v3
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0

################################
# Run Linter against code base #
################################
- name: Lint Code Base
uses: github/super-linter@v4
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit fbc9cc5

Please sign in to comment.