Update markdown requirement from ~=3.4 to ~=3.5 #28
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Building GitHub pages (CI) | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
COMMIT_AUTHOR: OPTIMADE | |
COMMIT_AUTHOR_EMAIL: dev@optimade.org | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install OPTIMADE | |
run: | | |
python -m pip install --upgrade pip | |
pip install -U setuptools | |
pip install -r requirements.txt | |
- name: Make pages | |
run: ./make_pages.py | |
- name: Build gh-pages branch locally | |
run: ./commit.sh |