Skip to content

access.redhat.com to docs.redhat.com updates #1457

access.redhat.com to docs.redhat.com updates

access.redhat.com to docs.redhat.com updates #1457

Workflow file for this run

name: Python tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: "3.9"
cache: 'pipenv'
- name: Install pipenv
run: pip install pipenv
- name: Verify Pipfile and Pipfile.lock are in sync
run: pipenv verify
- name: Install dependencies
run: make install
- name: Python test
run: make test-python