github_actions_testing 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 57a17a10360f602e72562b980957e8f48dc015f5a78635193473de5bce7ba93a
|
4
|
+
data.tar.gz: 62c71e62cf757f8eae83032fbc44752001bae516b7e329485bdcdd4fd132beaa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 821dc15f6f5f0c54de7af4853354a3e408ecab1f4a491a11eaa04065310043d971f2964ea226f8ff20f31bc4d410f0bfb8895ad98d807e8eb7aebdcbb87ccf61
|
7
|
+
data.tar.gz: f2577fe2e36f00282179f2c6ecaee3581be25b64513186266d73112e3ebb0def955b72c5e229f33000f56052c5d90996f2deceee9d5a0074816134ab69e0ea6e
|
@@ -14,17 +14,16 @@ jobs:
|
|
14
14
|
|
15
15
|
steps:
|
16
16
|
- uses: actions/checkout@master
|
17
|
-
- name: Set up Ruby 2.
|
17
|
+
- name: Set up Ruby 2.6
|
18
18
|
uses: actions/setup-ruby@v1
|
19
19
|
with:
|
20
|
-
version: 2.
|
21
|
-
|
22
|
-
- name: Build and test with Rake
|
20
|
+
version: 2.6.x
|
21
|
+
- name: Bundle install
|
23
22
|
run: |
|
24
23
|
gem install bundler
|
25
24
|
bundle install --jobs 4 --retry 3
|
26
|
-
|
27
|
-
|
25
|
+
- name: Test
|
26
|
+
run: bundle exec rake
|
28
27
|
- name: Publish to RubyGems
|
29
28
|
run: |
|
30
29
|
mkdir -p $HOME/.gem
|
@@ -16,8 +16,9 @@ jobs:
|
|
16
16
|
uses: actions/setup-ruby@v1
|
17
17
|
with:
|
18
18
|
ruby-version: 2.6.x
|
19
|
-
- name:
|
19
|
+
- name: Bundle install
|
20
20
|
run: |
|
21
21
|
gem install bundler
|
22
22
|
bundle install --jobs 4 --retry 3
|
23
|
-
|
23
|
+
- name: Test
|
24
|
+
run: bundle exec rake
|
@@ -18,8 +18,9 @@ jobs:
|
|
18
18
|
uses: actions/setup-ruby@v1
|
19
19
|
with:
|
20
20
|
ruby-version: 2.6.x
|
21
|
-
- name:
|
21
|
+
- name: Bundle install
|
22
22
|
run: |
|
23
23
|
gem install bundler
|
24
24
|
bundle install --jobs 4 --retry 3
|
25
|
-
|
25
|
+
- name: Test
|
26
|
+
run: bundle exec rake
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: github_actions_testing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Charlie Tanksley
|
@@ -108,8 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
108
108
|
- !ruby/object:Gem::Version
|
109
109
|
version: '0'
|
110
110
|
requirements: []
|
111
|
-
|
112
|
-
rubygems_version: 2.7.6.2
|
111
|
+
rubygems_version: 3.0.3
|
113
112
|
signing_key:
|
114
113
|
specification_version: 4
|
115
114
|
summary: Testing building and rubygems deployment with Github Actions.
|