Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the test yml file #38

Merged
merged 1 commit into from
Jun 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
actions: tests/workflows
dockerfiles: tests/dockerfiles
kubernetes: tests/k8s
docker_compose: tests/docker_compose
dockerfiles: '["tests/dockerfiles"]'
kubernetes: '["tests/k8s"]'
docker_compose: '["tests/docker_compose"]'
open_pr: true
fail_on_unpinned: true
test_pr_and_fail_again:
Expand All @@ -41,9 +41,9 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
actions: tests/workflows
dockerfiles: tests/dockerfiles
kubernetes: tests/k8s
docker_compose: tests/docker_compose
dockerfiles: '["tests/dockerfiles"]'
kubernetes: '["tests/k8s"]'
docker_compose: '["tests/docker_compose"]'
open_pr: true
fail_on_unpinned: true
test_no_pr_and_fail:
Expand All @@ -56,9 +56,9 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
actions: tests/workflows
dockerfiles: tests/dockerfiles
kubernetes: tests/k8s
docker_compose: tests/docker_compose
dockerfiles: '["tests/dockerfiles"]'
kubernetes: '["tests/k8s"]'
docker_compose: '["tests/docker_compose"]'
open_pr: false
fail_on_unpinned: true
test_no_pr_and_no_fail:
Expand All @@ -71,9 +71,9 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
actions: tests/workflows
dockerfiles: tests/dockerfiles
kubernetes: tests/k8s
docker_compose: tests/docker_compose
dockerfiles: '["tests/dockerfiles"]'
kubernetes: '["tests/k8s"]'
docker_compose: '["tests/docker_compose"]'
open_pr: false
fail_on_unpinned: false
test_no_pr_and_no_fail_no_actions:
Expand All @@ -86,9 +86,9 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
actions: ""
dockerfiles: "."
kubernetes: ""
docker_compose: ""
dockerfiles: '["."]'
kubernetes: '[""]'
docker_compose: '[""]'
open_pr: false
fail_on_unpinned: false
test_no_pr_and_no_fail_default:
Expand All @@ -112,8 +112,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
actions: ""
dockerfiles: "."
kubernetes: "."
docker_compose: "."
dockerfiles: '["."]'
kubernetes: '["."]'
docker_compose: '["."]'
open_pr: false
fail_on_unpinned: false