Logging improvement #334
Workflow file for this run
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: Build | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: 11 | |
| - name: Cache Maven packages | |
| uses: actions/cache@v3 | |
| with: | |
| path: ~/.m2 | |
| key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: ${{ runner.os }}-m2 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11.4" | |
| - run: python --version | |
| - run: pipx --version | |
| - run: pipx ensurepath | |
| - run: pipx install poetry==1.8.2 | |
| - run: pipx inject poetry poetry-plugin-export==1.7.1 | |
| - run: pipx install cyclonedx-bom==4.1.5 | |
| - name: Build with Maven and run the tests | |
| run: mvn --batch-mode --update-snapshots verify -Dgpg.skip=true |