From a8a882d8f553e1a4b186d252d45c06695f0354fa Mon Sep 17 00:00:00 2001 From: L3D Date: Thu, 6 Feb 2020 23:09:37 +0100 Subject: [PATCH] create github check if lektor is all-right --- .github/workflows/pythonpackage.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/pythonpackage.yml diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml new file mode 100644 index 0000000..7faaf0d --- /dev/null +++ b/.github/workflows/pythonpackage.yml @@ -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