Skip to content

Commit

Permalink
use explizit linting names
Browse files Browse the repository at this point in the history
specify for pull request author joergi

#100
#101
  • Loading branch information
joergi committed Mar 3, 2023
1 parent 67e0ba0 commit 19050d4
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/linters.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# This is a basic workflow to help you get started with Actions

name: Linting

# Controls when the action will run.
# Triggers the workflow on push or pull request
# events but only for the main branch
on:
push:
branches: [main]
pull_request:
branches: [main]

# A workflow run is made up of one or more jobs
# that can run sequentially or in parallel
jobs:
lint_powershell:
runs-on: ubuntu-latest
name: Lint Powershell Code Base
steps:
- uses: actions/checkout@v3.3.0
- name: Super-Linter
uses: docker://github/super-linter:v4
env:
VALIDATE_ALL_CODEBASE: true
VALIDATE_POWERSHELL: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
lint_bash:
runs-on: ubuntu-latest
name: Lint Bash Base
steps:
- uses: actions/checkout@v3.3.0
- name: Super-Linter
uses: docker://github/super-linter:v4
env:
VALIDATE_ALL_CODEBASE: true
VALIDATE_BASH: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# lint_docker:
# runs-on: ubuntu-latest
# name: Lint Docker Base
# steps:
# - uses: actions/checkout@v3.3.0
# - name: Super-Linter
# uses: docker://github/super-linter:v4
# env:
# VALIDATE_ALL_CODEBASE: true
# VALIDATE_DOCKER: true
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 19050d4

Please sign in to comment.