From 4f4392d6182f02934e3573973800cf7bcef2f3fd Mon Sep 17 00:00:00 2001 From: Michelle Laurenti Date: Thu, 13 Jun 2024 15:01:49 +0000 Subject: [PATCH] add database to test action --- .github/workflows/test.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3e1c6e9..5acbef3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,6 +11,20 @@ jobs: test: name: test runs-on: ubuntu-latest + services: + oracle-19c: + image: ghcr.io/oracle/adb-free:latest # https://github.com/oracle/adb-free + ports: + - 1521:1521 + env: + ADMIN_PASSWORD: TVDGXvpzQat8 + WALLET_PASSWORD: tkmXp6Ug + oracle-23c: + image: container-registry.oracle.com/database/free:latest + ports: + - 1522:1521 + env: + ORACLE_PWD: password container: image: ghcr.io/moveaxlab/oracle-devcontainer:latest steps: