Add JMH benchmarks and optimize CompoundValueMap more #123
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: Gradle Build | |
| on: [ push, pull_request ] | |
| jobs: | |
| build: | |
| name: Build lin-bus on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ ubuntu-latest, windows-latest ] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| lfs: true | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 25 | |
| distribution: 'temurin' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v6 | |
| - name: Build with Gradle | |
| run: ./gradlew build -s | |
| - name: "Kill Daemons Because Apparently GitHub Won't Do It For You" | |
| run: ./gradlew --stop | |
| - uses: actions/upload-artifact@v7 | |
| name: Archive Reports | |
| if: always() | |
| with: | |
| name: reports for ${{ matrix.os }} | |
| path: '**/build/reports/**' |