Skip to content

chore: bump org.jsoup:jsoup from 1.16.2 to 1.17.1 #70

chore: bump org.jsoup:jsoup from 1.16.2 to 1.17.1

chore: bump org.jsoup:jsoup from 1.16.2 to 1.17.1 #70

name: Integration Tests (H2)
on:
push:
pull_request:
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
permissions:
# NOTE: actions/upload-artifact makes no use of permissions
# See https://github.com/actions/upload-artifact/issues/197#issuecomment-832279436
contents: read # for "git clone"
defaults:
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#defaultsrun
run:
# Enable fail-fast behavior using set -eo pipefail
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#exit-codes-and-error-action-preference
shell: bash
jobs:
run-integration-tests:
name: Integration Tests
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
runs-on: ubuntu-20.04
steps:
- name: Clone source code
uses: actions/[email protected] # https://github.com/actions/checkout
with:
# Whether to configure the token or SSH key with the local git config. Default: true
persist-credentials: false
- name: Install JDK
uses: actions/[email protected] # https://github.com/actions/setup-java
with:
distribution: 'adopt' # https://github.com/actions/setup-java#supported-distributions
java-version: '8' # https://github.com/actions/setup-java#supported-version-syntax
cache: 'maven' # https://github.com/actions/setup-java#caching-packages-dependencies
- name: Run integration tests
run: ./src/main/scripts/execute-command.sh integration-tests
- name: Save RobotFramework reports
if: ${{ failure() }}
uses: actions/[email protected] # https://github.com/actions/upload-artifact
with:
name: robotframework-reports
path: target/robotframework-reports/