[konflux] add arches param #2553
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |