Skip to content

build(deps): bump brace-expansion from 5.0.3 to 5.0.5 in /labextensio… #32

build(deps): bump brace-expansion from 5.0.3 to 5.0.5 in /labextensio…

build(deps): bump brace-expansion from 5.0.3 to 5.0.5 in /labextensio… #32

Workflow file for this run

name: Kale Backend CI
on:
push:
branches:
- main
pull_request:
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
# Node is required by make dev (builds the JupyterLab extension)
- name: Set up Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22
- name: Install uv
uses: astral-sh/setup-uv@38f3f104447c67c051c4a08e39b64a148898af3a # v4
with:
version: "latest"
- name: Set up Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
with:
python-version: "3.12"
- name: Set up development environment
run: make dev
- name: Run backend tests
run: make test-backend
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
# Node is required by make dev (builds the JupyterLab extension)
- name: Set up Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22
- name: Install uv
uses: astral-sh/setup-uv@38f3f104447c67c051c4a08e39b64a148898af3a # v4
with:
version: "latest"
- name: Set up Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
with:
python-version: "3.12"
- name: Set up development environment
run: make dev
- name: Lint backend
run: make lint-backend