Skip to content

chore(deps): bump com.huaweicloud.sdk:huaweicloud-sdk-iam from 3.1.110 to 3.1.111 #76

chore(deps): bump com.huaweicloud.sdk:huaweicloud-sdk-iam from 3.1.110 to 3.1.111

chore(deps): bump com.huaweicloud.sdk:huaweicloud-sdk-iam from 3.1.110 to 3.1.111 #76

Workflow file for this run

---
## This is a master test workflow that runs all subsequent workflows
name: "Run All Tests"
on:
push:
branches:
- main
- releases
tags:
- '[0-9]+.[0-9]+.[0-9]+'
pull_request:
workflow_dispatch:
concurrency:
# cancel older running jobs on the same branch
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:
verify:
uses: ./.github/workflows/verify.yaml

Check failure on line 23 in .github/workflows/run-tests.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/run-tests.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/run-tests.yaml" -> "./.github/workflows/verify.yaml" : workflow is not reusable as it is missing a `on.workflow_call` trigger
secrets: inherit
unit-tests:
uses: ./.github/workflows/unit-tests.yaml
secrets: inherit
integration-tests:
uses: ./.github/workflows/integration-tests.yaml
secrets: inherit
# this job really serves no other purpose than waiting for the other two test workflows
# in future iterations, this could be used as a choke point to collect test data, etc.
summary:
needs:
- verify
- unit-tests
- integration-tests
runs-on: ubuntu-latest
steps:
- name: 'Master test job'
run: echo "all test jobs have run by now"