Skip to content

fix(px): pcompos input bytes #70

fix(px): pcompos input bytes

fix(px): pcompos input bytes #70

Workflow file for this run

name: Build and test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# run this workflow manually from the Actions tab
workflow_dispatch:
inputs:
version:
description: 'Version'
required: false
jobs:
build_test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
os: [ubuntu-latest, macos-latest, windows-latest, macos-13]
steps:
- name: Checkout pyradiance
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install and test
run: |
pip install pytest
git submodule update --init --recursive
pip install .
cd test
pytest