Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,18 @@ jobs:

services:
oracle:
image: quillbuilduser/oracle-18-xe
image: gvenzl/oracle-xe:latest
ports:
- 1521:1521
env:
TZ: Europe/Riga
ORACLE_PASSWORD: Oracle18
options: >-
--health-cmd healthcheck.sh
--health-interval 10s
--health-timeout 5s
--health-retries 10

steps:
- uses: actions/checkout@v2
- name: Set up Ruby
Expand Down
3 changes: 2 additions & 1 deletion spec/support/unlock_and_setup_hr_user.sql
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
alter user hr identified by hr account unlock;
create user hr identified by hr;
grant dba to hr;
grant execute on dbms_lock to hr;