This repository has been archived by the owner on Oct 13, 2023. It is now read-only.
[ART-5863] closure for Real Time team when OCP ships a kernel-rt #79
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: | |
branches: [ master ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: fedora:37 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: '0' | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' | |
- name: Install packages | |
run: dnf install -y gcc krb5-devel | |
- name: Create venv and install dependencies | |
run: make venv | |
- name: Run tests | |
run: make test |