Skip to content

Attemp workflow patches #82

Attemp workflow patches

Attemp workflow patches #82

Workflow file for this run

name: Python Build
on:
push:
branches: [ main, actions ]
pull_request:
branches: [ main ]
workflow_dispatch:
env:
BUILD_TYPE: Release
DEBUG_OUTPUT: false
jobs:
build-n-test:
strategy:
matrix:
os: [ubuntu-24.04, ubuntu-22.04, ubuntu-20.04, macos-14, macos-13, macos-12]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install tox
run: pip install tox
- name: Run python tests
run: cd src/python_module/test && tox