Skip to content

Commit

Permalink
Remove and style-check tabs and trailing spaces in markdown.dtx
Browse files Browse the repository at this point in the history
  • Loading branch information
Witiko committed Apr 1, 2024
1 parent 415379f commit a0c941c
Show file tree
Hide file tree
Showing 2 changed files with 329 additions and 316 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,18 @@ env:
DEBIAN_FRONTEND: noninteractive
DOCKER_DEV_IMAGE: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.draft == true }}
jobs:
spacecheck:
name: Style check (Tabs and spaces)
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
repository: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name || github.repository }}
ref: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.head.sha || github.sha }}
- name: Check for tabs and trailing spaces
run: |
! grep -n -P '\t|\s+$' markdown.dtx
shellcheck:
name: Style check (Bash)
runs-on: ubuntu-latest
Expand Down Expand Up @@ -111,6 +123,7 @@ jobs:
build-docker-image:
name: Build Docker image
needs:
- spacecheck
- shellcheck
- luacheck
- markdownlint
Expand Down
Loading

0 comments on commit a0c941c

Please sign in to comment.