ART-8629 Store upstream intended version into Redis #459
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: 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 |