[4/?] Add ability to run code examples in the playground: Get pony snippets tested with ponyc at CI time #50
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: Check code samples | |
on: | |
pull_request: | |
push: | |
jobs: | |
check-code-samples: | |
name: Check code samples | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Setup ponyc | |
run: ${GITHUB_WORKSPACE}/.ci-scripts/setup-ponyc.bash | |
- name: Check code samples | |
run: ${GITHUB_WORKSPACE}/.ci-scripts/check-code-samples.bash |