Skip to content

Smearing matrix

Smearing matrix #139

Workflow file for this run

# This workflow executes several linters on changed files based on languages used in your code base whenever
# you push a code or open a pull request.
#
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/github/super-linter
name: Lint Code Base
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
run-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: cat .github/workflows/super-linter.env >> "$GITHUB_ENV"
- 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
- name: Super-Linter
# You may pin to the exact commit or the version.
# uses: super-linter/super-linter@45fc0d88288beee4701c62761281edfee85655d7
uses: super-linter/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BRANCH: "main"
LOG_LEVEL: WARN