Skip to content

Commit

Permalink
KSP final
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacSweers committed Oct 31, 2023
1 parent a5d360c commit 7ec0eeb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,29 +8,29 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1

- name: Generate cache key
run: ./.github/workflows/checksum.sh checksum.txt

- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ matrix.java-version }}-${{ hashFiles('checksum.txt') }}
restore-keys: |
${{ runner.os }}-gradle-${{ matrix.java-version }}-
- name: Configure JDK
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '20'

- name: Test
run: ./gradlew build check
run: ./gradlew check

- name: Publish (default branch only)
if: github.repository == 'slackhq/EitherNet' && github.ref == 'refs/heads/main'
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ coroutines = "1.7.2"
kotlin = "1.9.20"
jdk = "20"
jvmTarget = "11"
ksp = "1.9.20-Beta-1.0.13"
ksp = "1.9.20-1.0.13"
ktfmt = "0.46"
moshi = "1.15.0"
okhttp = "4.9.0"
Expand Down

0 comments on commit 7ec0eeb

Please sign in to comment.