feat: adds Go UDCs for formatting/linting #4
Workflow file for this run
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: Markdown Check | |
on: | |
workflow_call: | |
pull_request: | |
jobs: | |
check-markdown: | |
name: Check if Markdown files are properly formatted. | |
runs-on: ubuntu-latest | |
env: | |
FORCE_COLOR: 1 | |
steps: | |
- uses: earthly/actions-setup@v1 | |
with: | |
version: v0.7.8 | |
- uses: actions/checkout@v4 | |
- name: Check all markdown files are properly formatted | |
run: earthly -P +markdown-check |