Skip to content

Commit

Permalink
add check
Browse files Browse the repository at this point in the history
  • Loading branch information
KommuSoft committed Oct 14, 2024
1 parent df2e029 commit dacd0b9
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,19 @@ jobs:
- name: look for todos
run: "! grep -i -P '<pre\\s*>|TODO|[?]{3,}' */*.md"

linux3:
name: Look for code not highlighted
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2.3.1
- name: look for unhighlighted code
run: "! grep -Pz '\\n\\n```\\n' */*.md"

linux3:
name: Deploy website
runs-on: ubuntu-latest
needs: [linux1, linux2]
needs: [linux1, linux2, linux3]
if: github.ref == 'refs/heads/master'
steps:
- name: update package database
Expand Down

0 comments on commit dacd0b9

Please sign in to comment.