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 c7a23a7Copy full SHA for c7a23a7
.github/workflows/test.yml
@@ -9,9 +9,16 @@ on:
9
jobs:
10
test:
11
runs-on: ubuntu-latest
12
+ env:
13
+ DATABASE_HOST: localhost
14
+ TZ: Asia/Tokyo
15
+ SCRIVITO_TENANT: ${{ secrets.SCRIVITO_TENANT }}
16
+ SCRIVITO_API_KEY: ${{ secrets.SCRIVITO_API_KEY }}
17
services:
18
db:
19
image: postgres:10.4-alpine
20
+ ports:
21
+ - 5432:5432
22
env:
23
POSTGRES_USER: postgres
24
POSTGRES_PASSWORD: password
@@ -29,7 +36,3 @@ jobs:
29
36
bundle exec rails db:setup
30
37
- name: rspec
31
38
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