From 9c5a6cca2174e937307258bad4cee09c2e2fb754 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Tue, 10 May 2022 08:47:04 -0500 Subject: [PATCH] run check-features during CI --- .github/workflows/build.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 95a408fc..35b8c394 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,6 +30,10 @@ jobs: - uses: actions/checkout@v1 with: submodules: true + - name: Set up Python 3.x + uses: actions/setup-python@v2 + with: + python-version: 3.x - uses: ruby/setup-ruby@v1 with: ruby-version: 3.0 @@ -38,6 +42,9 @@ jobs: run: | gem install bundler:1.17.3 bundle install --full-index + pip install python-frontmatter + - name: Check feature names + run: python3 check-features.py - name: Build site with jekyll run: | bundle exec jekyll build -d build