refactor(cadecon): convergence UI improvements and kernel estimation groundwork #306
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: 'npm' | |
| - run: npm ci | |
| - name: Cache build artifacts | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| **/.tsbuildinfo | |
| **/node_modules/.vite | |
| key: ${{ runner.os }}-build-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-build- | |
| - name: Format check | |
| run: npm run format:check | |
| - name: Lint | |
| run: npm run lint | |
| - name: Type check | |
| run: npm run typecheck | |
| - name: Tests | |
| run: npm run test | |
| - name: Build | |
| run: npm run build:apps | |
| python: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - uses: dtolnay/rust-toolchain@stable | |
| - name: Create venv and install deps | |
| run: | | |
| python -m venv .venv | |
| .venv/bin/pip install maturin[patchelf] numpy pytest h5py zarr | |
| working-directory: python | |
| - name: Build and install (dev) | |
| run: .venv/bin/maturin develop --features pybindings | |
| working-directory: python | |
| - name: Run Python tests | |
| run: .venv/bin/pytest | |
| working-directory: python |