Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,21 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4

- name: install uv and python
uses: astral-sh/setup-uv@v7
with:
version: "0.11.28"
python-version: ${{ matrix.python-version }}

- name: Install
run: make install-dev

- name: Check lock status
run: make check-lock

- name: Lint
run: make lint-services

- name: Test
run: make test-services
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,10 @@ update-dependencies:
cd core && uv lock
# lock services
@for f in $(shell ls ${SERVICES_DIR}); do set -e; cd ${SERVICES_DIR}/$${f};uv lock; cd ../..; done

check-lock:
# services
@for f in $(shell ls ${SERVICES_DIR}); do set -e;echo ">> Checking lockfile of $${f}" && uv lock --check --directory ${SERVICES_DIR}/$${f}; done
# core
echo ">> Checking lockfile of core"
uv lock --check --directory core
Loading