For slurm, use --jobs
, not --cores
. Add hint about conda
#737
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: "mkdocs: check" | |
on: | |
- push | |
- pull_request | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: Setup Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
cache: "pipenv" | |
cache-dependency-path: | | |
Pipfile.lock | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pipenv wheel | |
pipenv install | |
- run: cd bih-cluster && pipenv run mkdocs build |