rspec_table_formatter 0.1.11 → 0.1.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/gem-push.yml +6 -0
- data/Gemfile.lock +1 -1
- data/lib/rspec_table_formatter/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4f39e2b40a66011610fadf9d63c87bbff51d661a50e43a8ffc8b3570edb9b499
|
4
|
+
data.tar.gz: 6df8b9788937c4038d304846f4d0df4a9dabe3b09d9daca892650fcb1cc8f261
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e38a74845c5f7a08ba9aa23fe13e7fd1fc1df0aa2ac72dafc6bd9eab4cb2c7eeb586b005a61489f0b6106a114ab5a69764a8aec123733241748085dc936a28b
|
7
|
+
data.tar.gz: be4ebd1ad4aa7915a3c27ebb0464c5b96857ec30e2a0f8451bf2859fc73446c54d03ef5d427de3e92f7ca2f028294172d734a7d5dc0fbd084a194f297734700e
|
@@ -22,6 +22,12 @@ jobs:
|
|
22
22
|
with:
|
23
23
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
24
24
|
|
25
|
+
- name: Unset bundler deployment mode
|
26
|
+
run: bundle config unset deployment
|
27
|
+
|
28
|
+
- name: Install dependencies
|
29
|
+
run: bundle install --jobs 4
|
30
|
+
|
25
31
|
- name: Publish to RubyGems
|
26
32
|
# if: contains(github.ref, 'refs/tags/v')
|
27
33
|
run: |
|
data/Gemfile.lock
CHANGED