Skip to content

.github/workflows/unit_tests.yaml: run in path /teuthology_api #115

.github/workflows/unit_tests.yaml: run in path /teuthology_api

.github/workflows/unit_tests.yaml: run in path /teuthology_api #115

Workflow file for this run

name: Unit Tests (with tox)
on: pull_request
jobs:
build:
name: Unit Tests on python${{ matrix.python }} via ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-22.04
python: "3.10"
steps:
- uses: actions/checkout@v4
with:
path: teuthology_api
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install tox and any other packages
run: pip install tox
- name: Run tox
# Run tox using the version of Python in `PATH`
run: tox -e py
working-directory: teuthology_api