Add Seurat-GO workshop #34
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: test website build | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test-build: | |
runs-on: ubuntu-20.04 | |
steps: | |
# Check out the code | |
- name: Checkout master branch | |
uses: actions/checkout@v4 | |
# Set up Python environment | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
# Install dependencies | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
# Test building the website | |
- name: Build website | |
run: mkdocs build --strict |