Add .github/workflows/gha-testing.yml
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 4s
Testing / test (1.24.x, ubuntu-latest) (push) Successful in 1m5s

This commit is contained in:
Alex Savin
2025-04-28 19:46:48 -04:00
parent b8b4771e04
commit f1bd836a0a

20
.github/workflows/gha-testing.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: GHA Testing
on:
workflow_dispatch:
branches:
- develop
paths-ignore:
- 'README.md'
jobs:
gha-testing:
steps:
- name: Print environment variables
run: |
echo "The owner and repository name. $GITHUB_REPOSITORY"
echo "The commit SHA that triggered the workflow. $GITHUB_SHA"
echo "The branch or tag ref that triggered the workflow. $GITHUB_REF"
echo "The name of the workflow. $GITHUB_WORKFLOW"
echo "The name of the person or app that initiated the workflow. $GITHUB_ACTOR"
echo "The GitHub workspace directory path. $GITHUB_WORKSPACE"