Skip to content

MDBF-787: Add OpenEuler 24.03 as a rpm-autobake #2161

MDBF-787: Add OpenEuler 24.03 as a rpm-autobake

MDBF-787: Add OpenEuler 24.03 as a rpm-autobake #2161

Workflow file for this run

---
name: pre-commit
on:
pull_request:
push:
jobs:
pre-commit:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
#//TEMP we need to check only modified files WRT main
- name: Install requirements (apt)
run: |
sudo apt-get update
sudo apt-get install -y libvirt-dev
- name: Install requirements (uv pip)
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
make venv
make install
make install-pre-commit
- name: Run pre-commit (all)
run: |
source .venv/bin/activate
make pre-commit-run-all