Skip to content

added child process container slots and child process data #14

added child process container slots and child process data

added child process container slots and child process data #14

Workflow file for this run

# Built from:
# https://docs.github.com/en/actions/guides/building-and-testing-python
---
name: Build and test cmdr
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10"]
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: pipx install poetry
- name: Install dependencies
run: poetry install --no-interaction --no-root
- name: Install project
run: poetry install --no-interaction
- name: Run test suite
run: make test