Skip to content

ART-10624: set extra fields in reconciliation issues #2221

ART-10624: set extra fields in reconciliation issues

ART-10624: set extra fields in reconciliation issues #2221

Workflow file for this run

name: unit-tests
on:
pull_request:
paths:
- '**'
jobs:
tests:
runs-on: ubuntu-latest
container: fedora:latest
steps:
- name: Install git
run: dnf install -y git
- name: Install uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Verify uv installation
run: uv --version
- uses: actions/checkout@v4
with:
fetch-depth: 0
set-safe-directory: ${{ env.GITHUB_WORKSPACE }}
- name: Install packages
run: dnf install -y gcc krb5-devel make glibc
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Create venv and install dependencies
run: make venv
- name: Run tests
run: make test