Fix macroexpansion to make it behave like the official compiler #113
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: Test | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] # macOS-latest, windows-latest] | |
| java-version: ["8", "11", "17", "21"] | |
| distribution: ["temurin", "corretto"] | |
| profile: ["test-direct", "test-no-direct"] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Java | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: ${{ matrix.java-version }} | |
| distribution: ${{ matrix.distribution }} | |
| cache: 'maven' | |
| - name: Build with Maven | |
| run: mvn -ntp -B -P${{ matrix.profile }} clean test |