style: replace fully-qualified FieldWriter calls with import #45
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: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: corretto | |
| java-version: 21 | |
| cache: maven | |
| - name: Build and test | |
| run: mvn verify -B | |
| allocation-check: | |
| # Asserts JMH gc.alloc.rate.norm budgets per benchmark — guards against | |
| # regressions like a missed zero-alloc path or new String/byte[] allocations | |
| # on the hot path. See allocation-check.sh. | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: corretto | |
| java-version: 21 | |
| cache: maven | |
| - name: Build benchmark jar | |
| run: mvn package -DskipTests -B | |
| - name: Run allocation regression check | |
| run: ./allocation-check.sh |