[#95] Added possibility to add resource files via fluent api (acts as… #202
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: default | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| - '**/*' | |
| - '!master' | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest,macos-latest,windows-latest ] | |
| java: [ 8, 11, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23 ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK ${{ matrix.java }} | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'zulu' | |
| java-version: ${{ matrix.java }} | |
| cache: 'maven' | |
| - name: Prepare mvnw | |
| run: chmod +x ./mvnw | |
| - name: Build | |
| run: ./mvnw clean package | |