Use native file system observer for livereload #297
Workflow file for this run
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: | |
| schedule: | |
| - cron: '0 6 * * 6' | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| test: | |
| if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - python: '3.14' | |
| os: ubuntu-latest | |
| - python: '3.14' | |
| os: windows-latest | |
| - python: '3.14' | |
| os: macos-latest | |
| - python: '3.13' | |
| os: ubuntu-latest | |
| - python: '3.13' | |
| os: windows-latest | |
| - python: '3.12' | |
| os: macos-latest | |
| - python: '3.12' | |
| os: ubuntu-latest | |
| - python: '3.12' | |
| os: windows-latest | |
| - python: '3.11' | |
| os: ubuntu-latest | |
| - python: '3.11' | |
| os: macos-latest | |
| - python: '3.10' | |
| os: windows-latest | |
| - python: '3.10' | |
| os: ubuntu-latest | |
| versions: minimal | |
| runs-on: ${{matrix.os}} | |
| steps: | |
| - name: Download source | |
| uses: actions/checkout@v6 | |
| - name: Install Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{matrix.python}} | |
| - name: Pin to lowest versions | |
| if: matrix.versions == 'minimal' | |
| run: | | |
| sed -i -E 's/#min //; s/\b >=([0-9])/ ==\1/' pyproject.toml | |
| - name: Install Hatch | |
| run: | | |
| pip install hatch | |
| - name: Install dependencies | |
| run: | | |
| hatch run test:pip freeze | |
| - name: Run tests | |
| run: | | |
| hatch run +py=${{matrix.python}} test:test | |
| - name: Run integration tests | |
| if: matrix.versions != 'minimal' | |
| run: | | |
| hatch run +py=${{matrix.python}} integration:test | |
| style: | |
| if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Download source | |
| uses: actions/checkout@v6 | |
| - name: Install Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.13' | |
| - name: Install Hatch | |
| run: | | |
| pip install hatch | |
| - name: Install Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - name: Install dependencies | |
| run: | | |
| hatch run style:pip freeze | |
| hatch run types:pip freeze | |
| - name: Check with ruff | |
| if: always() | |
| run: hatch run style:check | |
| - name: Check with mypy | |
| if: always() | |
| run: hatch run types:check | |
| - name: Check Markdown style | |
| if: always() | |
| run: hatch run lint:markdown | |
| - name: Check JS style | |
| if: always() | |
| run: hatch run lint:js | |
| - name: Check spelling | |
| if: always() | |
| run: hatch run lint:spelling | |
| package: | |
| if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.13' | |
| - name: Install dependencies | |
| run: pip install -U build | |
| - name: Build package | |
| run: python -m build | |
| - name: Check packaged files | |
| shell: bash -e -x {0} | |
| run: | | |
| expected_wheel=(-eproperdocs/{templates/sitemap.xml,config/base.py,py.typed,contrib/search/lunr-language/lunr.nl.js}) | |
| expected_sdist=("${expected_wheel[@]}" -epyproject.toml) | |
| test "$(tar -ztf dist/properdocs-*.tar.gz | grep -F "${expected_sdist[@]}" | tee /dev/stderr | wc -l)" -eq "${#expected_sdist[@]}" | |
| test "$(unzip -l dist/properdocs-*any.whl | grep -F "${expected_wheel[@]}" | tee /dev/stderr | wc -l)" -eq "${#expected_wheel[@]}" |