#2056 Replaced progress bar with progress information for plugin inst… #1076
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: CI build | |
| on: | |
| push: | |
| paths-ignore: | |
| - 'documentation/**' | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - name: Run shell function tests | |
| shell: bash | |
| run: bash cli/src/test/functions-test.sh | |
| - name: Set up JDK | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '25' | |
| - name: Build project with Maven | |
| run: mvn -B -ntp -Dstyle.color=always install | |
| - name: Coveralls GitHub Action | |
| uses: coverallsapp/github-action@v2.2.3 |