Skip to content

Add options to merge command for controlling creation of system entry and type of relationships #1125

Add options to merge command for controlling creation of system entry and type of relationships

Add options to merge command for controlling creation of system entry and type of relationships #1125

Workflow file for this run

name: Python Tests
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: ${{ matrix.os }} Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Surfactant
run: |
python -m pip install --upgrade pip
python -m pip install -e .[test]
surfactant version
- name: Test with pytest
run: |
pytest