Skip to content

Rename InitMethod to WorkflowInit #2563

Rename InitMethod to WorkflowInit

Rename InitMethod to WorkflowInit #2563

Workflow file for this run

name: Testing
on: [push, pull_request]
concurrency:
cancel-in-progress: ${{ !contains(github.ref, 'release/')}}
group: tests-${{ github.workflow }}-${{ github.ref }}
jobs:
unit:
name: Unit Testing
uses: ./.github/workflows/run-test-suite.yml

Check failure on line 12 in .github/workflows/testing.yml

View workflow run for this annotation

GitHub Actions / Testing

Invalid workflow file

error parsing called workflow ".github/workflows/testing.yml" -> "./.github/workflows/run-test-suite.yml" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
with:
fail-fast: false
test-command: composer test:unit
# feature:
# name: Feature Testing
# uses: ./.github/workflows/run-test-suite.yml
# with:
# fail-fast: true
# test-command: composer test:feat
# test-timeout: 20
functional:
name: Functional Testing
uses: ./.github/workflows/run-test-suite.yml
with:
fail-fast: false
test-command: composer test:func
download-binaries: true
acceptance:
name: Acceptance Testing
uses: ./.github/workflows/run-test-suite.yml
with:
fail-fast: false
test-command: composer test:accept
download-binaries: true