Skip to content

Run feature tests on changes #8

Run feature tests on changes

Run feature tests on changes #8

name: Features Integration
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
permissions: read-all
concurrency: # Auto-cancel existing runs in the PR when a new commit is pushed
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build-docker-image:
uses: ./.github/workflows/docker-build-only.yml
feature-tests-ts:
needs: build-docker-image
uses: temporalio/features/.github/workflows/typescript.yaml@289c3035a2d554adf29f27dba4439febe35b01ae

Check failure on line 21 in .github/workflows/features-integration.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/features-integration.yml

Invalid workflow file

error parsing called workflow ".github/workflows/features-integration.yml" -> "temporalio/features/.github/workflows/typescript.yaml@289c3035a2d554adf29f27dba4439febe35b01ae" : the `uses' attribute must be a path, a Docker image, or owner/repo@ref
with:
# This field is not actually used by these workflow if docker-image-artifact-name
# is set, but it's marked as required, so supply some string.
version: __latest_features_docker_image__
version-is-repo-ref: false
docker-image-artifact-name: temporal-server-docker
feature-tests-go:
needs: build-docker-image
uses: temporalio/features/.github/workflows/go.yaml@289c3035a2d554adf29f27dba4439febe35b01ae
with:
version: __latest_features_docker_image__
version-is-repo-ref: false
docker-image-artifact-name: temporal-server-docker
feature-tests-python:
needs: build-docker-image
uses: temporalio/features/.github/workflows/python.yaml@289c3035a2d554adf29f27dba4439febe35b01ae
with:
version: __latest_features_docker_image__
version-is-repo-ref: false
docker-image-artifact-name: temporal-server-docker
feature-tests-java:
needs: build-docker-image
uses: temporalio/features/.github/workflows/java.yaml@289c3035a2d554adf29f27dba4439febe35b01ae
with:
version: __latest_features_docker_image__
version-is-repo-ref: false
docker-image-artifact-name: temporal-server-docker
feature-tests-dotnet:
needs: build-docker-image
uses: temporalio/features/.github/workflows/dotnet.yaml@289c3035a2d554adf29f27dba4439febe35b01ae
with:
version: __latest_features_docker_image__
version-is-repo-ref: false
docker-image-artifact-name: temporal-server-docker