docs: document uploads and editor response data #1120
This file contains hidden or 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: "CI" | |
| on: | |
| push: | |
| pull_request: | |
| # We don't run on PR synchronize, because that would duplicate the push-Build | |
| types: | |
| - opened | |
| jobs: | |
| python: | |
| uses: questionpy-org/.github/.github/workflows/python-ci.yml@v10 | |
| with: | |
| # GitHub workflow inputs do not support lists, so we pass JSON. | |
| pytest-python-versions: '["3.12", "3.13"]' | |
| packages: questionpy_common questionpy_server tests | |
| lint-qppe: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repo | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| - name: Lint QPPE | |
| working-directory: ./docs | |
| run: npx @stoplight/spectral-cli lint -f stylish -f text -o.stylish "<stdout>" -o.text "$GITHUB_STEP_SUMMARY" qppe-lms.yaml qppe-server.yaml |