Skip to content

Commit

Permalink
Upgrade actions
Browse files Browse the repository at this point in the history
* Upgrade jvm for actions
* Implement integration test action
  • Loading branch information
a2xchip committed Jan 22, 2025
1 parent 66dabc9 commit f0faa99
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup JDK 17
- name: Setup JDK 21
uses: actions/setup-java@v3
with:
java-version: '17'
java-version: '21'
distribution: 'corretto'

- name: Setup gradle
Expand All @@ -34,4 +34,4 @@ jobs:

- name: Build
continue-on-error: false
run: ./gradlew build
run: ./gradlew build
26 changes: 26 additions & 0 deletions .github/workflows/integration_testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Integration tests

on:
schedule:
- cron: '0 0 * * 1'

permissions:
contents: read

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'corretto'

- name: Setup gradle
uses: gradle/gradle-build-action@v2

- name: Run integration tests
continue-on-error: false
run: ./gradlew integrationTest

0 comments on commit f0faa99

Please sign in to comment.