Skip to content

Commit ffa5b5e

Browse files
authoredApr 25, 2023
Merge pull request slovensko-digital#91 from slovensko-digital/refactor-spike-2022
Refactor 2022-2023
2 parents 518fe07 + 1f7c813 commit ffa5b5e

File tree

198 files changed

+4664
-31261
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

198 files changed

+4664
-31261
lines changed
 

‎.github/dependabot.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
# To get started with Dependabot version updates, you'll need to specify which
3+
# package ecosystems to update and where the package manifests are located.
4+
# Please see the documentation for all configuration options:
5+
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
6+
7+
version: 2
8+
updates:
9+
- package-ecosystem: "maven"
10+
directory: "/" # Location of package manifests
11+
schedule:
12+
interval: "daily"

‎.github/workflows/package.yaml

+15-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- os: windows-latest
1414

1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717

1818
- name: Update version in pom if tag pushed
1919
if: startsWith(github.ref, 'refs/tags/')
@@ -28,7 +28,7 @@ jobs:
2828
java-package: 'jdk+fx'
2929

3030
- name: Cache local Maven repository and JDK cache
31-
uses: actions/cache@v2
31+
uses: actions/cache@v3
3232
with:
3333
path: |
3434
~/.m2/repository
@@ -57,3 +57,16 @@ jobs:
5757
target/*.dmg
5858
env:
5959
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
60+
61+
- name: JaCoCo Code Coverage Report
62+
id: jacoco_report
63+
uses: PavanMudigonda/jacoco-reporter@v4.8
64+
with:
65+
coverage_results_path: ${{ github.workspace }}/target/site/jacoco/jacoco.xml
66+
coverage_report_name: Coverage
67+
coverage_report_title: JaCoCo
68+
github_token: ${{ secrets.GITHUB_TOKEN }}
69+
skip_check_run: false
70+
minimum_coverage: 80
71+
fail_below_threshold: false # set to true for Github CI build failing when coverage check do not pass
72+
publish_only_summary: false

0 commit comments

Comments
 (0)
Please sign in to comment.