All Downloads are FREE. Search and download functionalities are using the official Maven repository.

.github.workflows.linter.yml Maven / Gradle / Ivy

Go to download

Implementation of a gRPC client and server for the Jelly gRPC streaming protocol.

There is a newer version: 2.0.0
Show newest version
---
name: Lint codebase

on:
  pull_request:
    branches: [master, main]

jobs:
  build:
    name: Lint codebase
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v4
        with:
          # Full git history is needed to get a proper
          # list of changed files within `super-linter`
          fetch-depth: 0

      - name: Lint codebase
        uses: super-linter/super-linter@v6
        env:
          # This repo is small enough for a full check
          VALIDATE_ALL_CODEBASE: true
          VALIDATE_CHECKOV: false
          VALIDATE_NATURAL_LANGUAGE: false
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy