Skip to content

Commit 4ca00aa

Browse files
committed
Add some raw CI
1 parent 6e8b9dc commit 4ca00aa

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

.github/workflows/main.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Tests
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
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

Comments
 (0)