DOC: Read html_baseurl from RTD environment, if available #1406
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: Contribution checks | |
on: | |
push: | |
branches: | |
- master | |
- maint/* | |
pull_request: | |
branches: | |
- master | |
- maint/* | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
stable: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: ['ubuntu-latest'] | |
python-version: [3.9] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Display Python version | |
run: python -c "import sys; print(sys.version)" | |
- name: Install flake8 | |
run: python -m pip install flake8 | |
- name: Check fMRIPrep | |
run: python -m flake8 fmriprep | |
- name: Check wrapper | |
run: python -m flake8 wrapper |