It looks like you might be referring to "mensagens" (messages) in the… #8
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: Kafka streams CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: '17' | |
| distribution: 'adopt' | |
| - name: Build and test root project | |
| run: mvn clean install | |
| ## cache the maven repository | |
| - name: Cache Maven packages | |
| uses: actions/cache@v3 | |
| with: | |
| path: ~/.m2/repository | |
| key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}-${{ github.run_id }} | |
| restore-keys: | | |
| ${{ runner.os }}-maven-${{ github.run_id }} | |
| ${{ runner.os }}-maven- | |
| - name: Build and test kafka-basic module | |
| working-directory: kafka-basic | |
| run: mvn clean install | |
| - name: Build and test kafka-producer-wikimedia module | |
| working-directory: kafka-producer-wikimedia | |
| run: mvn clean install | |
| - name: Build and test kafka-consumer-opensearch module | |
| working-directory: kafka-consumer-opensearch | |
| run: mvn clean install | |