Bump com.dataliquid:parent-oss from 2.3.1 to 2.4.0 (#63) #121
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Java CI with Maven | |
| on: | |
| push: | |
| branches: [ master, develop ] | |
| pull_request: | |
| branches: [ master, develop ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| java: [ '17', '21' ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK ${{ matrix.java }} | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: ${{ matrix.java }} | |
| distribution: 'temurin' | |
| cache: maven | |
| - name: Build with Maven | |
| run: mvn -ntp -Dgpg.skip=true clean compile | |
| - name: Run tests | |
| run: mvn -ntp -Dgpg.skip=true test | |
| - name: Package | |
| run: mvn -ntp -Dgpg.skip=true package | |
| - name: Install plugin locally | |
| run: mvn -ntp -Dgpg.skip=true install |