chore: add .flattened-pom.xml to .gitignore #13
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: Maven Build | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| name: Maven Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| cache: 'maven' | |
| - name: Build demo modules | |
| run: mvn -B clean install | |
| - name: Build grpc-spring | |
| run: mvn -B clean install | |
| working-directory: ./grpc-spring | |
| - name: Build pattern-design | |
| run: mvn -B clean install | |
| working-directory: ./pattern-design | |
| - name: Build rocketmq | |
| run: mvn -B clean install | |
| working-directory: ./rocketmq |