Skip to content

ci: add docker build verification job to tests and release workflows #20

ci: add docker build verification job to tests and release workflows

ci: add docker build verification job to tests and release workflows #20

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
test:
name: Pytest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- name: Install uv and Set up Python
uses: astral-sh/setup-uv@v5
with:
python-version: "3.13"
enable-cache: true
- name: Install Dependencies
run: uv sync --group dev
- name: Run Pytest
run: uv run pytest
docker-build-test:
name: Docker Build Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- name: Build Docker image
run: docker build -t codefinetuner-ci-image .