This repository has been archived on 2025-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
docker-salt-master/.github/workflows/linter.yml
2020-10-16 21:20:42 +02:00

25 lines
486 B
YAML

name: Lint Code
on:
pull_request:
branches:
- master
jobs:
lint:
name: Lint code
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Lint code base
uses: github/super-linter@v3
env:
VALIDATE_DOCKERFILE_HADOLINT: true
VALIDATE_BASH: true
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}