Merge pull request #153 from zenodo/roadmap-q1-2026 #246
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: "Test Lektor build" | |
| on: | |
| pull_request: | |
| branches: master | |
| push: | |
| branches: master | |
| jobs: | |
| Tests: | |
| name: Test Lektor wbsites build | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout branch | |
| uses: actions/checkout@v2 | |
| - name: Setup Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.9' | |
| - name: Install dependencies | |
| run: | | |
| pip install -U pip | |
| pip install "Lektor>=3.3.4" | |
| pip freeze | |
| - name: Run tests | |
| run: ./runtests.sh |