This repository has been archived by the owner on Jan 16, 2024. It is now read-only.
Linting YouShallNotPass #41
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: YouShallNotPass Linter | |
run-name: Linting YouShallNotPass | |
on: [push] | |
jobs: | |
golangci-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Repository | |
uses: actions/checkout@v4 | |
- name: Run Golangci-Lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.53 | |
shellcheck-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Repository | |
uses: actions/checkout@v4 | |
- name: Run ShellCheck | |
uses: ludeeus/action-shellcheck@master |