forked from Project-MONAI/tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (26 loc) · 791 Bytes
/
guidelines.yml
File metadata and controls
28 lines (26 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: build
on:
# quick tests for every pull request
push:
branches:
- main
pull_request:
jobs:
guidelines:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.10
uses: actions/setup-python@v6
with:
python-version: 3.10
cache: 'pip'
- name: Install dependencies
run: |
find /opt/hostedtoolcache/* -maxdepth 0 ! -name 'Python' -exec rm -rf {} \;
python -m pip install --upgrade pip wheel
pip install --no-build-isolation -r https://raw.githubusercontent.com/Project-MONAI/MONAI/dev/requirements-dev.txt
pip install -r requirements.txt
- name: Guidelines notebook format check
run: |
$(pwd)/runner.sh --no-run --no-checks --cell-standard