Skip to content

Rename to pipelinechain #9

Rename to pipelinechain

Rename to pipelinechain #9

Workflow file for this run

name: Tests
on:
pull_request:
paths:
- 'tests/**.py'
- 'pipelinechain/**.py'
push:
paths:
- 'tests/**.py'
- 'pipelinechain/**.py'
jobs:
build:
runs-on: ${{ matrix.os }}
environment:
name: test
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, '3.10', '3.11']
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.3.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --only-binary=wheel setuptools twine pytest
python -m pip install -e ".[test]"
- name: Unit tests
run: |
python -m pytest