fixes initialisation of custom actions · hypertrace/.github@5912507 · GitHub
Skip to content

Commit 5912507

Browse files
committed
fixes initialisation of custom actions
1 parent 5cf0838 commit 5912507

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

workflow-templates/merge-publish.yml

Lines changed: 1 addition & 1 deletion

workflow-templates/pr-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fetch-depth: 0
2121

2222
- name: create checksum file
23-
run: hypertrace/actions/checksum@main
23+
uses: hypertrace/actions/checksum@main
2424

2525
- name: Cache packages
2626
id: cache-packages

workflow-templates/pr-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
gradle-packages-${{ runner.os }}
2929
3030
- name: Unit test
31-
run: ./gradlew -no-build-cache cleanTest jacocoTestReport
31+
run: ./gradlew jacocoTestReport
3232

3333
- name: Upload coverage to Codecov
3434
uses: codecov/codecov-action@v1
@@ -38,7 +38,7 @@ jobs:
3838
flags: unit
3939

4040
- name: Integration test
41-
run: ./gradlew -no-build-cache cleanTest jacocoIntegrationTestReport
41+
run: ./gradlew jacocoIntegrationTestReport
4242

4343
- name: Upload coverage to Codecov
4444
uses: codecov/codecov-action@v1
@@ -50,7 +50,7 @@ jobs:
5050
- name: Copy test reports
5151
run: ./gradlew copyAllReports --output-dir=/tmp/test-reports
5252

53-
- name: Archive integration test report
53+
- name: Archive test reports
5454
uses: actions/upload-artifact@v1
5555
with:
5656
name: test-reports

workflow-templates/publish.yml

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)