diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index 4c0165a7d1..4f80dd0962 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -1,24 +1,31 @@ -name: Examples +# name: GitHub CI +# on: +# pull_request: +# workflow_dispatch: +# push: +# tags: +# - "*" +# branches: +# - main -# Controls when the workflow will run +name: Examples on: - # Triggers the workflow on push or pull request events but only for the main branch + pull_request: + branches: [ main ] + workflow_dispatch: push: - tags: - - 'v*' branches: - main - pull_request: - branches: [ main ] - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true env: ANSYSLMD_LICENSE_FILE: ${{ format('1055@{0}', secrets.LICENSE_SERVER) }} PYEDB_USE_LEGACY: '1' PYEDB_CI_NO_DISPLAY: '1' + MAIN_PYTHON_VERSION_WINDOWS_SELFHOSTED: '3.9' + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: