Skip to content

Commit

Permalink
Merge pull request #68 from AgusCastro/ft/super-linter
Browse files Browse the repository at this point in the history
#54 - Super-linter implementation
  • Loading branch information
AgusPk authored Oct 31, 2023
2 parents 29b5253 + e441ad5 commit b58acf5
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Lint Code Base
on:
push:
branches:
- main

pull_request:
branches:
- main

jobs:
build:
name: Lint Code Base
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
statuses: write
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 Code Base
uses: super-linter/super-linter/slim@v5
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b58acf5

Please sign in to comment.