-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
35 additions
and
36 deletions.
There are no files selected for viewing
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ jobs: | |
- name: Load super-linter configuration | ||
# source | ||
# https://github.com/super-linter/super-linter/blob/main/docs/run-linter-locally.md#share-environment-variables-between-environments | ||
run: grep -v '^#' .muggle/super-linter.env >> "$GITHUB_ENV" | ||
run: grep -v '^#' super-linter.env >> "$GITHUB_ENV" | ||
- name: Lint Code Base | ||
# must be in sync with version in compose file | ||
uses: super-linter/[email protected] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
# headers with the same content | ||
MD024: false | ||
# inline html | ||
MD033: false |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
#!make | ||
include make/help.make | ||
.DELETE_ON_ERROR: | ||
|
||
include .muggle/Makefile | ||
.PHONY: all help lint | ||
|
||
.DEFAULT_GOAL := help | ||
|
||
## Run all targets | ||
all: render | ||
|
||
## Lint code base | ||
lint: | ||
@echo "Linting ..." | ||
docker compose up super-linter | ||
@echo "... linting done." |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# workflows | ||
# muggle | ||
|
||
Reusable GitHub Actions (GHA) Workflows | ||
devops package |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
--- | ||
include: | ||
- .muggle/docker-compose.yml | ||
services: | ||
super-linter: | ||
# version needs to be in sync with version in .github/*.yml | ||
image: ghcr.io/super-linter/super-linter:slim-v7.2.1 | ||
environment: | ||
- RUN_LOCAL=true | ||
# fix for amd64 bug as per https://github.com/super-linter/super-linter/issues/5070 | ||
- SHELL=/bin/bash | ||
platform: linux/amd64 | ||
env_file: | ||
- ./super-linter.env | ||
volumes: | ||
- ./:/tmp/lint |
File renamed without changes.
File renamed without changes.