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 fd8ec8b
Show file tree
Hide file tree
Showing 9 changed files with 34 additions and 35 deletions.
File renamed without changes.
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 fd8ec8b

Please sign in to comment.