Skip to content

Commit

Permalink
fix paths for submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
maxheld83 committed Jan 18, 2025
1 parent 3daafaa commit 204025e
Show file tree
Hide file tree
Showing 10 changed files with 35 additions and 36 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/lint_reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
5 changes: 5 additions & 0 deletions .markdownlint.yml
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
15 changes: 0 additions & 15 deletions .muggle/Makefile

This file was deleted.

14 changes: 0 additions & 14 deletions .muggle/docker-compose.yml

This file was deleted.

16 changes: 14 additions & 2 deletions Makefile
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."
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# workflows
# muggle

Reusable GitHub Actions (GHA) Workflows
devops package
15 changes: 13 additions & 2 deletions docker-compose.yml
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.

0 comments on commit 204025e

Please sign in to comment.