Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ofalvai/HabitBuilder
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f5db2cfa6cf4902f3b6b6b626c9fdc2b3b80ff85
Choose a base ref
..
head repository: ofalvai/HabitBuilder
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2f6e082171169bf10d58d23b5793e1843569a75f
Choose a head ref
8 changes: 4 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ jobs:
uses: actions/checkout@v4

- name: Restore cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
@@ -27,7 +27,7 @@ jobs:
${{ runner.os }}-gradle-
- name: Setup Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: adopt
java-version: 17
@@ -40,7 +40,7 @@ jobs:
# run: ./gradlew lintDebug

- name: Upload lint report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: lint-reports
path: '**/build/reports/lint-results-debug.html'
@@ -49,7 +49,7 @@ jobs:
run: ./gradlew test --stacktrace

- name: Upload test reports
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-reports
path: '**/build/reports/tests/'
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
@@ -111,8 +111,9 @@ ruler {

licensee {
allow("Apache-2.0")
allow("MIT")
allow("BSD-3-Clause")
allowUrl("https://github.com/kizitonwose/calendar/blob/main/LICENSE.md")
allowUrl("https://opensource.org/licenses/MIT")
}

dependencies {
Loading