Skip to content

Commit 63baad0

Browse files
committed
1 parent 2246e6c commit 63baad0

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,18 @@ jobs:
3131

3232
services:
3333
oracle:
34-
image: quillbuilduser/oracle-18-xe
34+
image: gvenzl/oracle-xe:latest
3535
ports:
3636
- 1521:1521
3737
env:
3838
TZ: Europe/Riga
39+
ORACLE_PASSWORD: Oracle18
40+
options: >-
41+
--health-cmd healthcheck.sh
42+
--health-interval 10s
43+
--health-timeout 5s
44+
--health-retries 10
45+
3946
steps:
4047
- uses: actions/checkout@v2
4148
- name: Set up Ruby
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
alter user hr identified by hr account unlock;
1+
create user hr identified by hr;
2+
grant dba to hr;
23
grant execute on dbms_lock to hr;

0 commit comments

Comments
 (0)