We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b93c23f commit 85b6767Copy full SHA for 85b6767
.github/workflows/go-test.yml
@@ -36,7 +36,7 @@ jobs:
36
- name: Create test files
37
run: |
38
echo "Port=8080" > backup.conf
39
- echo "CallbackSecret=my-test-secret" >> backup.conf
+ echo "callback_secret=my-test-secret" >> backup.conf
40
echo "ScriptPath=./test-script.sh" >> backup.conf
41
echo "#!/bin/bash" > test-script.sh
42
echo 'echo "script output"' >> test-script.sh
@@ -84,7 +84,7 @@ jobs:
84
echo "Integration test passed"
85
86
# Cleanup
87
- pkill -f ./myapp || true
+ killall myapp || true
88
89
- name: Output application logs
90
if: always()
0 commit comments