Thanks to visit codestin.com Credit goes to github.com
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 36e125a commit 74b3ee9Copy full SHA for 74b3ee9
.github/workflows/test.yml
@@ -12,9 +12,18 @@ jobs:
12
services:
13
db:
14
image: postgres:10.4-alpine
15
+ ports:
16
+ - 5432:5432
17
env:
18
POSTGRES_USER: postgres
19
POSTGRES_PASSWORD: password
20
+ build:
21
+ name: build
22
+ env:
23
+ DATABASE_HOST: localhost
24
+ TZ: Asia/Tokyo
25
+ SCRIVITO_TENANT: ${{ secrets.SCRIVITO_TENANT }}
26
+ SCRIVITO_API_KEY: ${{ secrets.SCRIVITO_API_KEY }}
27
steps:
28
- uses: actions/checkout@v2
29
with:
@@ -29,7 +38,3 @@ jobs:
38
bundle exec rails db:setup
30
39
- name: rspec
31
40
run: bundle exec rails spec
32
- env:
33
- TZ: Asia/Tokyo
34
- SCRIVITO_TENANT: ${{ secrets.SCRIVITO_TENANT }}
35
- SCRIVITO_API_KEY: ${{ secrets.SCRIVITO_API_KEY }}
0 commit comments