Correction bug #90
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: Continuous Integration | |
on: | |
push: | |
# edit for testing | |
branches: [ 'main', 'develop', '28-notebooks-error'] | |
pull_request: | |
branches: [ 'main', 'develop' ] | |
jobs: | |
# -------------------------------- | |
# Lint the Codebase | |
# -------------------------------- | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Format | |
uses: psf/black@stable | |
# -------------------------------- | |
# Build the Package | |
# -------------------------------- | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install dependency manager | |
uses: snok/install-poetry@v1 | |
- name: Install dependencies | |
run: make install-dependencies | |
- name: Build package | |
run: make build | |
# -------------------------------- | |
# Test if notebooks build | |
# -------------------------------- | |
notebooks: | |
name: notebooks check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set CUDA_VISIBLE_DEVICES | |
run: echo "CUDA_VISIBLE_DEVICES=-1" >> $GITHUB_ENV | |
- name: Install dependency manager | |
uses: snok/install-poetry@v1 | |
- name: Install dependencies | |
run: make install-dependencies | |
- name: check notebooks | |
run: make check-notebooks |