Skip to content

[konflux] add arches param #2553

[konflux] add arches param

[konflux] add arches param #2553

Workflow file for this run

name: unit-tests
on:
pull_request:
paths:
- '**'
jobs:
tests:
runs-on: ubuntu-latest
container: registry.access.redhat.com/ubi9/ubi:latest
steps:
- name: Install dependencies
run: dnf install -y git clang
- 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: Create venv and install dependencies
run: make venv
- name: Run tests
run: make test