chore(Dependabot-docker): bump ubi9/python-311 from 1-77.1729776556 to 9.5 #551
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: Run tests | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
permissions: | |
checks: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Install pipenv | |
run: pip install pipenv==2023.7.23 | |
- name: install packages | |
run: sudo apt-get install -y libkrb5-dev | |
- name: Create virtualenv | |
run: pipenv sync | |
- name: Run tests | |
run: | | |
pipenv run pytest tests |