Add lazy evaluation for For comprehensions via two-argument For methods #381
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: doclint | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| doc-lint: | |
| runs-on: ubuntu-latest | |
| name: Validate JavaDocs | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '21' | |
| architecture: 'x64' | |
| cache: 'maven' | |
| - name: Validate JavaDocs | |
| run: mvn javadoc:javadoc |