Skip to content

Merge remote-tracking branch 'origin/master' #36

Merge remote-tracking branch 'origin/master'

Merge remote-tracking branch 'origin/master' #36

Workflow file for this run

#name: RunTests
#
#on:
# push:
# branches: [ develop ]
# pull_request:
# branches: [ master, develop ]
# workflow_call:
#
#
#jobs:
# build:
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# os: [ubuntu-latest, windows-latest, macos-latest]
# python-version: [3.12]
#
# steps:
# - uses: actions/checkout@v2
# - name: Set up ${{ matrix.python-version }}
# uses: actions/setup-python@v2
# with:
# python-version: ${{ matrix.python-version }}
# - name: Install dependencies
# run: |
# pipx install poetry
# poetry install --with dev
# - name: Test with pytest + Coverage
# run: |
# poetry run pytest --html=html/${{ matrix.os }}-test-results-${{ matrix.python-version }}.html
# - name: Upload pytest test results
# uses: actions/upload-artifact@v4
# with:
# name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }}
# path: html/${{ matrix.os }}-test-results-${{ matrix.python-version }}.html
# # Use always() to always run this step to publish test results when there are test failures
# if: ${{ always() }}