There was an error while loading. Please reload this page.
1 parent 34d5fb7 commit a29112bCopy full SHA for a29112b
1 file changed
.github/workflows/ci.yml
@@ -12,7 +12,7 @@ concurrency:
12
13
defaults:
14
run:
15
- shell: bash -l {0}
+ shell: bash -l {0} # needed so conda is activated in every step
16
17
jobs:
18
lint:
@@ -31,22 +31,6 @@ jobs:
31
- name: Run ruff
32
run: ruff check .
33
34
- typecheck:
35
- name: Type-check (mypy)
36
- runs-on: ubuntu-latest
37
- steps:
38
- - uses: actions/checkout@v4
39
-
40
- - uses: actions/setup-python@v5
41
- with:
42
- python-version: "3.11"
43
44
- - name: Install package + mypy
45
- run: pip install mypy numpy h5py && pip install -e .
46
47
- - name: Run mypy
48
- run: mypy pyxdm --ignore-missing-imports
49
50
test:
51
name: Tests (Python ${{ matrix.python-version }})
52
runs-on: ubuntu-latest
0 commit comments