Skip to content

ART-8629 Store upstream intended version into Redis #459

ART-8629 Store upstream intended version into Redis

ART-8629 Store upstream intended version into Redis #459

Workflow file for this run

name: unit-tests
on:
pull_request:
paths:
- '**'
jobs:
tests:
runs-on: ubuntu-latest
container: fedora:38
steps:
- name: Install git
run: dnf install -y git
- uses: actions/checkout@v4
with:
fetch-depth: 0
set-safe-directory: ${{ env.GITHUB_WORKSPACE }}
- name: Install packages
run: dnf install -y gcc krb5-devel
- 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