Skip to content

Build and test pyfactxx #12

Build and test pyfactxx

Build and test pyfactxx #12

name: Build and test pyfactxx
on:
workflow_dispatch:
push:
branches: [ $default-branch, "wheels" ]
pull_request:
branches: [ $default-branch, "wheels" ]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./FaCT++.Python
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov
- name: Install package
working-directory: ./FaCT++.Python
run: |
pip install -e .
- name: Test with pytest
working-directory: ./FaCT++.Python
run: |
pytest pyfactxx