Bump the python-dependencies group with 2 updates #185
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 | |
# Cancel running workflows when additional changes are pushed | |
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-using-a-fallback-value | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Install OPTIMADE | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r make_ghpages/requirements.txt | |
- name: Make pages | |
run: cd make_ghpages && python make_pages.py |