Skip to content

🌱 Update openstack-ironic digest to eda12b9 (main) #40

🌱 Update openstack-ironic digest to eda12b9 (main)

🌱 Update openstack-ironic digest to eda12b9 (main) #40

Workflow file for this run

name: Unit Tests
on:
pull_request:
types: [ opened, edited, reopened, synchronize, ready_for_review ]
permissions: {}
jobs:
unit-tests:
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
matrix:
python-version: ["3.12"]
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: ${{ matrix.python-version }}
- name: Install test dependencies
run: python -m pip install pytest
- name: Run unit tests
run: python -m pytest tests/ -v