We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e8b9dc commit 4ca00aaCopy full SHA for 4ca00aa
.github/workflows/main.yml
@@ -0,0 +1,45 @@
1
+name: Tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+defaults:
12
+ run:
13
+ shell: bash -l {0}
14
15
+jobs:
16
+ lint:
17
+ runs-on: ${{ matrix.os }}
18
19
+ strategy:
20
+ fail-fast: false
21
+ matrix:
22
+ os: [ubuntu-latest]
23
+ python-version: ['3.14']
24
25
+ steps:
26
+ - name: Checkout
27
+ uses: actions/checkout@v4
28
29
+ - name: Install Conda environment with Micromamba
30
+ uses: mamba-org/setup-micromamba@v1
31
+ with:
32
+ environment-name: ci
33
+ channels: conda-forge
34
+ create-args: >-
35
+ python=${{ matrix.python-version }}
36
+ jupyterlab
37
+ build
38
39
+ - name: Test TS build
40
+ run: |
41
+ jlpm
42
+ jlpm run build
43
44
+ - name: Test Python build
45
+ run: python -m build
0 commit comments