Skip to content

Commit 060ebe0

Browse files
committed
Fix github action workflow
1 parent cc613cb commit 060ebe0

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

.github/workflows/test-example.yml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build and Push
1+
name: Test Example
22

33
on:
44
pull_request:
@@ -16,15 +16,14 @@ jobs:
1616
name: Run Tests of Example Application
1717
runs-on: ubuntu-latest
1818
steps:
19-
steps:
20-
- name: Checkout repository
21-
uses: actions/checkout@v4
19+
- name: Checkout repository
20+
uses: actions/checkout@v4
2221

23-
- name: Copy solution to tests/assignment
24-
run: |
25-
mkdir -p example/tests/assignment
26-
cp -r example/solution/* example/tests/assignment/
22+
- name: Copy solution to tests/assignment
23+
run: |
24+
mkdir -p example/tests/assignment
25+
cp -r example/solution/* example/tests/assignment/
2726
28-
- name: Run Gradle Tests
29-
working-directory: example/tests/assignment
30-
run: ./gradlew test
27+
- name: Run Gradle Tests
28+
working-directory: example/tests/assignment
29+
run: ./gradlew test

0 commit comments

Comments
 (0)