Skip to content

chore(deps): remove Fossa license scanning #1268

chore(deps): remove Fossa license scanning

chore(deps): remove Fossa license scanning #1268

name: K8S Integration
# This test bootstraps a Kubernetes environment with Kubernetes in Docker [KinD],
# installs the MongoDB Operator and a MongoDB and then verifies that a database
# with user and password and a corresponding secret is created.
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7
- name: Set up JDK
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
with:
distribution: 'temurin'
java-version: 21
cache: 'gradle'
- name: Setup environment
uses: nick-fields/retry@v3
with:
timeout_minutes: 10
max_attempts: 10
retry_wait_seconds: 10
warning_on_retry: false
command: ./start.sh
- name: Run tests
uses: nick-fields/retry@v3
with:
timeout_minutes: 10
max_attempts: 10
retry_wait_seconds: 10
warning_on_retry: false
command: ./test.sh
- name: Tear down environment
uses: nick-fields/retry@v3
if: "always()"
with:
timeout_minutes: 5
max_attempts: 3
retry_wait_seconds: 10
warning_on_retry: false
command: ./stop.sh