Place documentation contributors guide in more discoverable location … #463
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: | |
| Tests: | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 10 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # Test the Java LTS versions and latest version available | |
| java-version: [11, 23] | |
| os: [macOS-latest, ubuntu-latest, windows-latest] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Set up JDK $ | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: ${{ matrix.java-version }} | |
| - name: Test with Maven | |
| run: mvn test |