GUI: (GSampleNumericalDialog + TemplateNumericalWidget) Used an horizontal layout to solve the misaligned widgets problem #101
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run jobs for building and testing IODE (CLI, GUI, PYTHON, DOC, NSIS) | |
on: | |
# Triggers the workflow on pull request events | |
pull_request | |
jobs: | |
# see https://docs.github.com/en/actions/using-workflows/reusing-workflows#calling-a-reusable-workflow | |
build_and_test: | |
if: | | |
!contains(github.head_ref, 'doc') && !contains(github.head_ref, 'cmd') && | |
!contains(github.head_ref, 'cli') && !contains(github.head_ref, 'cython') && | |
!contains(github.head_ref, 'gui') && !contains(github.head_ref, 'nsis') && | |
!contains(github.head_ref, 'release') | |
uses: ./.github/workflows/github-actions-build-and-test.yml | |
with: | |
build-config: windows-debug | |
build_cli: | |
if: contains(github.head_ref, 'cmd') || contains(github.head_ref, 'cli') | |
uses: ./.github/workflows/github-actions-cli.yml | |
with: | |
build-config: windows-debug | |
build_gui: | |
if: contains(github.head_ref, 'gui') | |
uses: ./.github/workflows/github-actions-gui.yml | |
with: | |
build-config: windows-debug | |
build_cython: | |
if: contains(github.head_ref, 'cython') | |
uses: ./.github/workflows/github-actions-python.yml | |
with: | |
build-config: windows-debug | |
build_doc: | |
if: contains(github.head_ref, 'doc') | |
uses: ./.github/workflows/github-actions-doc.yml | |
build_nsis: | |
if: contains(github.head_ref, 'nsis') | |
uses: ./.github/workflows/github-actions-nsis.yml | |
with: | |
build-config: windows-debug |