Document manual staging production roadmap #3
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: Tests | |
| on: | |
| pull_request: | |
| push: | |
| permissions: | |
| contents: read | |
| jobs: | |
| unit: | |
| name: Python 3.9 on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - macos-latest | |
| - ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v7 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.9" | |
| - name: Check shell syntax | |
| run: bash -n paperscript.sh tests/live-smoke.sh | |
| - name: Check Python syntax | |
| run: python -m py_compile paperscript/paperscript.py tests/test_paperscript.py | |
| - name: Run unit tests | |
| run: python -m unittest discover -s tests -p "test_*.py" -v |