[QI2-1126] Added compiler_configs to static reply #21
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: Validation | |
on: | |
pull_request: | |
jobs: | |
lint: | |
name: Markdown linting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: DavidAnson/markdownlint-cli2-action@v11 | |
tests: | |
name: JSON validation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
working-directory: ./tests | |
run: pip install -r requirements.txt | |
- name: Run test cases | |
working-directory: ./tests | |
run: ./tests.sh |