We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d54ed4 commit 4a8d5aeCopy full SHA for 4a8d5ae
.github/workflows/run-tests.yaml
@@ -19,17 +19,11 @@ jobs:
19
oracle:
20
image: gvenzl/oracle-free:latest
21
env:
22
- APP_USER: $GORM_ORACLEDB_USER
23
- APP_USER_PASSWORD: $GORM_ORACLEDB_PASSWORD
+ APP_USER: ${{ secrets.GORM_ORACLEDB_USER }}
+ APP_USER_PASSWORD: ${{ secrets.GORM_ORACLEDB_PASSWORD }}
24
ORACLE_RANDOM_PASSWORD: yes
25
ports:
26
- 1521:1521
27
- options: >-
28
- --health-cmd="sqlplus -s $GORM_ORACLEDB_USER/$GORM_ORACLEDB_PASSWORD@localhost:1521/FREEPDB1 <<< \"select 1 from dual;\""
29
- --health-start-period 10s
30
- --health-interval 10s
31
- --health-timeout 5s
32
- --health-retries 10
33
steps:
34
35
- name: Set up Go
0 commit comments