Bump version to 4.4.15-SNAPSHOT #9
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: Run Tests | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths-ignore: | |
| - '*.md' | |
| - '*.adoc' | |
| - '.gitignore' | |
| - '.editorconfig' | |
| - 'examples/**' | |
| - 'Dockerfile*' | |
| - '.github/workflows/**' | |
| - '!.github/workflows/run-tests.yml' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| - name: Set up Gradle (for more sophisticated caching) | |
| uses: gradle/actions/setup-gradle@v5 | |
| - name: Run tests | |
| timeout-minutes: 60 | |
| run: | | |
| ./gradlew --no-build-cache --continue integrationTest || true | |
| - name: Publish test results | |
| run: | | |
| curl https://raw.githubusercontent.com/couchbaselabs/junit-markdown/refs/heads/main/JunitMarkdown.java --output ${{ runner.temp }}/JunitMarkdown.java | |
| java ${{ runner.temp }}/JunitMarkdown.java . >> $GITHUB_STEP_SUMMARY |