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 a41c04c commit f2d996cCopy full SHA for f2d996c
.github/workflows/linux.yml
@@ -56,14 +56,12 @@ jobs:
56
- uses: ruby/setup-ruby@v1
57
with:
58
ruby-version: ${{ matrix.ruby }}
59
+ bundler-cache: true
60
- name: prepare database
61
env:
62
PGPASSWORD: password
63
run: |
64
psql -h localhost -p 5432 -U postgres -c "CREATE ROLE fluentd WITH LOGIN ENCRYPTED PASSWORD 'fluentd';"
65
psql -h localhost -p 5432 -U postgres -c "CREATE DATABASE fluentd_test OWNER fluentd;"
66
- name: unit testing
- run: |
67
- gem install bundler rake
68
- bundle install --jobs 4 --retry 3
69
- bundle exec rake test
+ run: bundle exec rake test
0 commit comments