Skip to content

refactor(tests): using the same syntax to name test classes #3283

refactor(tests): using the same syntax to name test classes

refactor(tests): using the same syntax to name test classes #3283

Workflow file for this run

name: CI/CD
on:
push:
branches-ignore:
- 'dependabot/**'
paths-ignore:
- 'CHANGELOG.md'
- 'LICENSE'
- 'README.md'
- 'renovate.json'
- '.gitignore'
- '.mergify.yml'
pull_request:
workflow_dispatch:
jobs:
dispatcher:
runs-on: ubuntu-latest
# For PRs execute only on commit since the branch protection require the branch to be up-to-date (optimize the workflow).
# Triggers the executions if an external PR is opened.
if: >-
github.event_name != 'pull_request'
|| github.event.pull_request.head.repo.full_name != github.repository
|| startsWith(github.head_ref, 'refs/heads/dependabot/')
steps:
- run: 'true'
ci-cd:
needs: [ dispatcher ]
uses: ./.github/workflows/build-and-release.yml
secrets: inherit