create github check if lektor is all-right
This commit is contained in:
parent
80a73c726e
commit
a8a882d8f5
1 changed files with 25 additions and 0 deletions
25
.github/workflows/pythonpackage.yml
vendored
Normal file
25
.github/workflows/pythonpackage.yml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
name: lektor check
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: [2.7, 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
|
Loading…
Reference in a new issue