Bump com.sap.cloud.db.jdbc:ngdbc from 2.23.8 to 2.23.9 #274
Workflow file for this run
This file contains 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: Integration Tests | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: read-all | |
jobs: | |
build: | |
name: Integration Tests | |
runs-on: ubuntu-latest | |
steps: | |
# SETUP BUILD ENVIRONMENT | |
- id: prepare-maven-build | |
name: Prepare Maven build | |
uses: sualeh/prepare-maven-build@v1.4.0 | |
with: | |
java-version: 21 | |
- id: install-graphviz | |
name: Install Graphviz | |
uses: sualeh/install-graphviz@v1.0.3 | |
# BUILD DEPENDENCIES | |
- id: checkout-schemacrawler | |
name: Checkout SchemaCrawler | |
uses: actions/checkout@v4 | |
with: | |
repository: schemacrawler/SchemaCrawler | |
path: SchemaCrawler | |
- id: build-schemacrawler | |
name: Build SchemaCrawler for local Maven repository | |
shell: bash | |
run: | | |
# Build SchemaCrawler | |
cd SchemaCrawler | |
mvn \ | |
--no-transfer-progress \ | |
--batch-mode \ | |
-DskipTests=true \ | |
clean install | |
# BUILD AND TEST | |
- id: build-test | |
name: Build and run database integration tests | |
env: | |
TZ: GMT | |
shell: bash | |
run: | | |
# Build | |
mvn \ | |
--no-transfer-progress \ | |
--batch-mode \ | |
-Dheavydb \ | |
clean install \ | |
org.jacoco:jacoco-maven-plugin:0.8.11:report-aggregate | |
# GET TEST RESULTS | |
- id: publish-test-results | |
name: Upload results and coverage | |
if: contains(github.ref, 'main') | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
shell: bash | |
run: | | |
# Upload results and coverage | |
bash <(curl -s https://codecov.io/bash) -t 9b176264-b1dd-412b-83f4-342720a3c7eb | |
- id: upload-coverage-test-results | |
name: Upload coverage test results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverage-test-results | |
path: ./schemacrawler/target/site/jacoco-aggregate |