-
Notifications
You must be signed in to change notification settings - Fork 524
49 lines (39 loc) · 991 Bytes
/
tests.yml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
defaults:
run:
shell: bash -elo pipefail {0}
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Create environment with Micromamba
uses: mamba-org/setup-micromamba@v1
with:
cache-downloads: true
cache-environment: true
environment-file: tests/environment-tests.yml
post-cleanup: none
- name: Lint notebooks
run: |
SKIP=no-commit-to-branch pre-commit run --all-files
- name: Test notebooks
run: |
cd ./notebooks
rm -r -f *.py
jupyter nbconvert --to python *.ipynb
for f in *.py; do ipython "$f"; done
rm -r -f *.py