We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d7f80b commit 7160a2bCopy full SHA for 7160a2b
.github/workflows/demo-workflow.yml
@@ -72,7 +72,7 @@ jobs:
72
uses: garygrossgarten/github-action-scp@release
73
with:
74
local: target/workflow-github-actions-1.0-SNAPSHOT.jar
75
- remote: hacene/demo/actions # My remote directory
+ remote: hacene/demo/actions/workflow-github-actions.jar # My remote directory
76
host: ${{ secrets.HOST }}
77
username: ${{ secrets.SSH_USER }}
78
password: ${{ secrets.SSH_PASSWORD }}
src/test/java/com/workflow/github/WorkflowApplicationTest.java
@@ -0,0 +1,11 @@
1
+package com.workflow.github;
2
+
3
+import org.junit.jupiter.api.Test;
4
5
+class WorkflowApplicationTest {
6
7
+ @Test
8
+ public void main() {
9
+ WorkflowApplication.main(new String[]{});
10
+ }
11
+}
0 commit comments