Skip to content

Bump tools/bids-specification from 8c9fa11 to 334dd36 #115

Bump tools/bids-specification from 8c9fa11 to 334dd36

Bump tools/bids-specification from 8c9fa11 to 334dd36 #115

---
name: build-book
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# run on pushes and pull requests to main
on:
pull_request:
branches:
- main
# This job installs dependencies, build the book, and pushes it to `gh-pages`
jobs:
build-book:
if: (github.event.pull_request) && !contains(github.head_ref, 'all-contributors')
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python_version: ['3.9', '3.10', '3.11']
fail-fast: false # Don't cancel all jobs if one fails
runs-on: ${{ matrix.os }}
steps:
- name: Checkout-repository
uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: Setup Python ${{ matrix.python_version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements.txt
# Build the book
- name: Build the book
run: make book