Skip to content

Chore/stackitsdk 466 update deps #6043

Chore/stackitsdk 466 update deps

Chore/stackitsdk 466 update deps #6043

Workflow file for this run

name: CI Workflow
on: [pull_request, workflow_dispatch]
jobs:
main:
name: CI
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15"]
runs-on: ${{ matrix.os }}
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: Lint
run: make lint-services
- name: Test
run: make test-services