We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45d6173 commit 33150e0Copy full SHA for 33150e0
1 file changed
.github/workflows/ci.yml
@@ -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