2020-02-06 23:09:37 +01:00
|
|
|
name: lektor check
|
2020-02-14 16:39:40 +01:00
|
|
|
on: [push, pull_request]
|
2020-02-06 23:09:37 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-02-06 23:12:14 +01:00
|
|
|
python-version: [3.5, 3.6, 3.7, 3.8]
|
2020-02-06 23:09:37 +01:00
|
|
|
|
|
|
|
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
|
2020-02-07 01:00:30 +01:00
|
|
|
- name: Cache lfs
|
2020-02-07 00:25:44 +01:00
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
2020-02-07 01:00:30 +01:00
|
|
|
path: ~/.cache/lektor
|
|
|
|
key: lektorcache
|
|
|
|
- name: Cache lfs
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: .git
|
2020-02-07 00:25:44 +01:00
|
|
|
key: lfs
|
|
|
|
- name: install and pull lfs
|
|
|
|
run: |
|
2020-02-07 00:26:47 +01:00
|
|
|
sudo apt-get install git-lfs
|
2020-02-07 00:25:44 +01:00
|
|
|
git lfs pull
|
2020-02-07 01:00:30 +01:00
|
|
|
- name: install lektor
|
2020-02-07 14:35:05 +01:00
|
|
|
run: make install
|
2020-02-07 01:00:30 +01:00
|
|
|
- name: build with lektor
|
2020-02-06 23:09:37 +01:00
|
|
|
run: |
|
2020-02-07 14:35:05 +01:00
|
|
|
make build
|