access.redhat.com to docs.redhat.com updates #1457
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: 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 |