Skip to content

Update Dependencies #14

Update Dependencies

Update Dependencies #14

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10, 3.11, 3.12, 3.13]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev
- name: Install Kompose
run: curl -L https://github.com/kubernetes/kompose/releases/download/v1.34/kompose-linux-amd64 -o kompose && chmod +x kompose && sudo mv ./kompose /usr/bin/kompose
- name: Run Migrations
run: uv run python manage.py makemigrations && uv run python manage.py migrate
- name: Test
run: uv run python manage.py test