Merge pull request #43 from c3woc/DO1JLR-patch-1

add github actions support
This commit is contained in:
L3D 2020-02-06 23:17:25 +01:00 committed by GitHub
commit f47c2e330d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

25
.github/workflows/lektor-check.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: lektor check
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: check with lektor
run: |
pip install lektor
# stop the build if there are Python syntax errors or undefined names
lektor build -f scss