Skip to content

Commit

Permalink
Add doc check to GitHub Actions steps
Browse files Browse the repository at this point in the history
  • Loading branch information
coenjacobs committed Sep 19, 2024
1 parent 58e0644 commit e755e61
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,20 @@ jobs:
cache-to: type=gha,mode=max
- name: Run mess detector
run: docker compose run --rm actions-tester composer test:phpmd
doc-check:
runs-on: ubuntu-latest
name: Documentation check
steps:
- name: Setup Docker buildx
uses: docker/setup-buildx-action@v2
- uses: actions/checkout@v4
- name: Build Docker image
id: build-and-push
uses: docker/build-push-action@v4
with:
context: "{{defaultContext}}"
push: false
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Run doc check
run: docker compose run --rm actions-tester composer test:docs

0 comments on commit e755e61

Please sign in to comment.