interscript-maps 2.1.0a8 → 2.1.0a9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +45 -0
- data/interscript-maps.gemspec +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 787f7a3ee5db4f80a918eccb4946d7b6dc0b79a9b9dc0bdb7d5dbe2492418661
|
4
|
+
data.tar.gz: 5394992e449ef98b9fd1013ed96c89227a2386c96a968986949749d1090720e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86ac00b08f434be0192a6dc2af179e51b4df6b688644f78a40b4671c82de6ad0672954bf156477f7be677fb96ad417dce2ca8c63e47b01e3bcdb078403b4a2ca
|
7
|
+
data.tar.gz: 545f34e8f83bf57d77064b50f8089ceb5ae4a062b027f25aefe16bf208df354efc4764067cd3ab7c02b576d5c89a41797e441abeaab73fb85a4d88d6776755ed
|
@@ -0,0 +1,45 @@
|
|
1
|
+
name: test
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches: [ master ]
|
6
|
+
pull_request:
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
test:
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
|
12
|
+
steps:
|
13
|
+
- uses: actions/checkout@v2
|
14
|
+
with:
|
15
|
+
repository: interscript/interscript
|
16
|
+
submodules: true
|
17
|
+
|
18
|
+
- run: |
|
19
|
+
rm -rf maps
|
20
|
+
mkdir maps
|
21
|
+
|
22
|
+
- uses: actions/checkout@v2
|
23
|
+
with:
|
24
|
+
path: maps
|
25
|
+
|
26
|
+
- name: Set up Ruby
|
27
|
+
uses: ruby/setup-ruby@v1
|
28
|
+
with:
|
29
|
+
ruby-version: 2.7
|
30
|
+
|
31
|
+
- name: cache ruby gems
|
32
|
+
uses: actions/cache@v2
|
33
|
+
env:
|
34
|
+
cache-name: cache-ruby-modules
|
35
|
+
with:
|
36
|
+
path: vendor/bundle
|
37
|
+
key: ${{ runner.os }}-ruby-2.7-gems-${{ hashFiles('**/interscript.gemspec') }}
|
38
|
+
restore-keys: |
|
39
|
+
${{ runner.os }}-ruby-2.7-gems-
|
40
|
+
|
41
|
+
- run: |
|
42
|
+
bundle config path vendor/bundle
|
43
|
+
pushd ruby && bundle install --jobs 4 --retry 3 --with jsexec --without secryst && popd
|
44
|
+
|
45
|
+
- run: pushd ruby && bundle exec rspec spec/interscript_spec.rb && popd
|
data/interscript-maps.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: interscript-maps
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.0a9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
@@ -17,6 +17,7 @@ executables: []
|
|
17
17
|
extensions: []
|
18
18
|
extra_rdoc_files: []
|
19
19
|
files:
|
20
|
+
- ".github/workflows/test.yml"
|
20
21
|
- README.adoc
|
21
22
|
- interscript-maps.gemspec
|
22
23
|
- interscript-maps.yaml
|