Fix close PHP blocks #478
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
# ---------------------------------------------------------------------------- | |
# GitHub Actions workflow to test correctness of examples, AsciiDoctor content. | |
# | |
# See docs: | |
# - https://castle-engine.io/github_actions | |
# - https://docs.github.com/en/actions | |
# ---------------------------------------------------------------------------- | |
name: Test Examples and AsciiDoctor | |
on: | |
push: | |
pull_request: | |
repository_dispatch: | |
types: [cge-docker-unstable-changed] | |
jobs: | |
test-docker: | |
name: Test Examples and AsciiDoctor | |
runs-on: ubuntu-latest | |
container: kambi/castle-engine-cloud-builds-tools:cge-unstable | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test Examples | |
run: cd htdocs/code-samples/ && make | |
- name: Test Images Generation | |
run: cd htdocs/images/ && ./update_image_sizes.sh | |
- name: Test AsciiDoctor | |
run: cd htdocs/doc/ && make test |