Skip to content

Bump lxml from 6.0.0 to 6.1.0 #79

Bump lxml from 6.0.0 to 6.1.0

Bump lxml from 6.0.0 to 6.1.0 #79

name: "Management: ActuatorApi"
on:
workflow_dispatch:
inputs:
linux_integration_environment:
description: GitHub Environment name for integration tests running on linux.
required: false
type: string
windows_integration_environment:
description: GitHub Environment name for integration tests running on Windows.
required: false
type: string
push:
branches:
- main
- '[0-9]+.x'
pull_request:
paths:
- .gitattributes
- .gitignore
- behave*
- nuget.config
- Pipfile*
- pyenv.pkgs
- '**/*.py'
- Management/src/ActuatorApi/**
- .github/workflows/management.yml
- .github/workflows/shared-test-workflow.yml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}-${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}
cancel-in-progress: true
jobs:
linux:
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Management
sample: ActuatorApi
OS: linux
environment_name: ${{ github.event.inputs.linux_integration_environment || vars.LINUX_INTEGRATION_ENVIRONMENT }}
windows:
uses: ./.github/workflows/shared-test-workflow.yml
secrets: inherit
with:
feature: Management
sample: ActuatorApi
OS: windows
environment_name: ${{ github.event.inputs.windows_integration_environment || vars.WINDOWS_INTEGRATION_ENVIRONMENT }}