Skip to content

Commit 33150e0

Browse files
committedApr 19, 2023
Add CI workflow
1 parent 45d6173 commit 33150e0

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
 

‎.github/workflows/ci.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- "**"
8+
9+
jobs:
10+
checks:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
python-version: [ "3.10", "3.11" ]
16+
steps:
17+
- uses: actions/checkout@v2
18+
- uses: actions/setup-python@v4
19+
with:
20+
python-version: ${{ matrix.python-version }}
21+
- run: pip install -r dev-requirements.txt
22+
- run: pre-commit run -a
23+
- run: pytest --nbval notebooks

0 commit comments

Comments
 (0)