Skip to content

Commit

Permalink
upd ci
Browse files Browse the repository at this point in the history
  • Loading branch information
nkonev committed Nov 23, 2024
1 parent 4327dc3 commit 117414d
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,17 @@ jobs:
# test against latest update of each major Java version, as well as specific updates of LTS versions:
java: [ 17.0.4 ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
- uses: actions/setup-java@v4
with:
distribution: liberica
cache: 'maven'
cache-dependency-path: 'pom.xml'
java-version: ${{ matrix.java }}
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
- name: Test with Maven
run: |
pwd
ls -lah
./mvnw clean package -DenableOomTests=true
./mvnw clean test -DenableOomTests=true
rm -rf ~/.m2/repository/name/nkonev/r2dbc-migrate

0 comments on commit 117414d

Please sign in to comment.