about: roadmap update #165
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: "Test Lektor build" | |
on: | |
pull_request: | |
branches: master | |
push: | |
branches: master | |
jobs: | |
Tests: | |
name: Test Lektor wbsites build | |
runs-on: ubuntu-20.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 |