[maven-release-plugin] prepare release jruby-maven-plugins-3.0.3 #54
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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-20.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| java: [8, 11] | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v2 | |
| - name: Set up java | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: zulu | |
| java-version: ${{ matrix.java }} | |
| cache: maven | |
| - name: Install dependencies | |
| run: ./mvnw install -B -Dmaven.test.skip -Dinvoker.skip | |
| - name: Run tests | |
| run: ./mvnw verify -B -Pintegration-test |