metanorma-mpfa 0.5.5 → 0.5.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 62a96f1d5d303059e7dc8a29e7d3bd18b23b543ca007fbae6ca366a40b740bb0
4
- data.tar.gz: 6d7cb703ff990f04ebe42a6920979b56350c15319e6489ffdd7ecfa991b57a59
3
+ metadata.gz: '028095c8e9593bbd435c9c26a832aa880035eb14677e39cbc3404ade7b43c87c'
4
+ data.tar.gz: 0ca0917efb37987a0740e0fae27b57cb36418940cb7a4be77fd6e941835ae4ab
5
5
  SHA512:
6
- metadata.gz: c2b4bdc8f4ca796605864b7ca351aab6a52536723841309841c25230378a274514245461c126ea4c967c6b7e8b066cd8c556e8ef2ca287091737f71b8763a594
7
- data.tar.gz: 94139ffd2306c52d8f8c4ac4f0f2797b51575bbc15da80eada6e4765d310f30b9dd4be9ff85a4e892aac4ec41c261df2ba1706e25cb5391d6eced04030c5efc5
6
+ metadata.gz: 1c94dc642e33f3def7152b42c9805057a1cb70ab01814848c1bc82961f52b26a27c084ddd579ca541d25b387d92642ec771180c5021febe241208e0ed5fddcce
7
+ data.tar.gz: eeb38f86787013cd4a977b36e4ea50a55e92c9d7c18641ea193899427efbe98a6550600cf0e08484acd1efd5719b9105041f78f075b73ee94f45ebfdcabea02e
@@ -0,0 +1,44 @@
1
+ # Auto-generated by Cimas: Do not edit it manually!
2
+ # See https://github.com/metanorma/cimas
3
+ name: rake
4
+
5
+ on:
6
+ push:
7
+ branches: [ master ]
8
+ pull_request:
9
+
10
+ jobs:
11
+ rake:
12
+ name: Test on Ruby ${{ matrix.ruby }} ${{ matrix.os }}
13
+ runs-on: ${{ matrix.os }}
14
+ continue-on-error: ${{ matrix.experimental }}
15
+ strategy:
16
+ fail-fast: false
17
+ matrix:
18
+ ruby: [ '2.6', '2.5', '2.4' ]
19
+ os: [ ubuntu-latest, windows-latest, macos-latest ]
20
+ experimental: [ false ]
21
+ include:
22
+ - ruby: '2.7'
23
+ os: 'ubuntu-latest'
24
+ experimental: true
25
+ - ruby: '2.7'
26
+ os: 'windows-latest'
27
+ experimental: true
28
+ - ruby: '2.7'
29
+ os: 'macos-latest'
30
+ experimental: true
31
+ steps:
32
+ - uses: actions/checkout@master
33
+
34
+ - name: Use Ruby
35
+ uses: ruby/setup-ruby@v1
36
+ with:
37
+ ruby-version: ${{ matrix.ruby }}
38
+ bundler-cache: true
39
+
40
+ - name: Update gems
41
+ run: bundle install --jobs 4 --retry 3
42
+
43
+ - name: Run specs
44
+ run: bundle exec rake
@@ -56,7 +56,7 @@ module Asciidoctor
56
56
  presentation_xml_converter(node).convert(@filename + ".xml")
57
57
  html_converter(node).convert(@filename + ".presentation.xml", nil, false, "#{@filename}.html")
58
58
  doc_converter(node).convert(@filename + ".presentation.xml", nil, false, "#{@filename}.doc")
59
- pdf_converter(node).convert(@filename + ".presentation.xml", nil, false, "#{@filename}.doc")
59
+ pdf_converter(node)&.convert(@filename + ".presentation.xml", nil, false, "#{@filename}.pdf")
60
60
  end
61
61
 
62
62
  def validate(doc)
@@ -82,6 +82,7 @@ module Asciidoctor
82
82
  end
83
83
 
84
84
  def pdf_converter(node)
85
+ return if node.attr("no-pdf")
85
86
  IsoDoc::MPFA::PdfConvert.new(doc_extract_attributes(node))
86
87
  end
87
88
  end
@@ -1164,49 +1164,7 @@
1164
1164
  </define>
1165
1165
  <define name="annex">
1166
1166
  <element name="annex">
1167
- <optional>
1168
- <attribute name="id">
1169
- <data type="ID"/>
1170
- </attribute>
1171
- </optional>
1172
- <optional>
1173
- <attribute name="language"/>
1174
- </optional>
1175
- <optional>
1176
- <attribute name="script"/>
1177
- </optional>
1178
- <optional>
1179
- <attribute name="inline-header">
1180
- <data type="boolean"/>
1181
- </attribute>
1182
- </optional>
1183
- <attribute name="obligation">
1184
- <choice>
1185
- <value>normative</value>
1186
- <value>informative</value>
1187
- </choice>
1188
- </attribute>
1189
- <optional>
1190
- <ref name="section-title"/>
1191
- </optional>
1192
- <group>
1193
- <group>
1194
- <zeroOrMore>
1195
- <ref name="BasicBlock"/>
1196
- </zeroOrMore>
1197
- <zeroOrMore>
1198
- <ref name="note"/>
1199
- </zeroOrMore>
1200
- </group>
1201
- <zeroOrMore>
1202
- <choice>
1203
- <ref name="annex-subsection"/>
1204
- <ref name="terms"/>
1205
- <ref name="definitions"/>
1206
- <ref name="references"/>
1207
- </choice>
1208
- </zeroOrMore>
1209
- </group>
1167
+ <ref name="Annex-Section"/>
1210
1168
  </element>
1211
1169
  </define>
1212
1170
  <define name="terms">
@@ -111,6 +111,10 @@ b, strong {
111
111
  div.document-stage-band, div.document-type-band {
112
112
  background-color: #333333; }
113
113
 
114
+ a.FootnoteRef + a.FootnoteRef:before {
115
+ content: ", ";
116
+ vertical-align: super; }
117
+
114
118
  #standard-band {
115
119
  background-color: #0AC442; }
116
120
 
@@ -1093,6 +1093,7 @@
1093
1093
 
1094
1094
 
1095
1095
 
1096
+
1096
1097
  </xsl:attribute-set><xsl:variable name="note-body-indent">10mm</xsl:variable><xsl:variable name="note-body-indent-table">5mm</xsl:variable><xsl:attribute-set name="note-name-style">
1097
1098
 
1098
1099
 
@@ -1628,12 +1629,26 @@
1628
1629
 
1629
1630
 
1630
1631
 
1631
- <!-- except gb and bipm -->
1632
1632
 
1633
- <xsl:apply-templates select="../*[local-name()='note']" mode="process"/>
1634
1633
 
1635
1634
 
1635
+ <!-- except gb -->
1636
+
1637
+ <xsl:apply-templates select="../*[local-name()='note']" mode="process"/>
1638
+
1636
1639
 
1640
+ <!-- show Note under table in preface (ex. abstract) sections -->
1641
+ <!-- empty, because notes show at page side in main sections -->
1642
+ <!-- <xsl:if test="$namespace = 'bipm'">
1643
+ <xsl:choose>
1644
+ <xsl:when test="ancestor::*[local-name()='preface']">
1645
+ <xsl:apply-templates select="../*[local-name()='note']" mode="process"/>
1646
+ </xsl:when>
1647
+ <xsl:otherwise>
1648
+ <fo:block/>
1649
+ </xsl:otherwise>
1650
+ </xsl:choose>
1651
+ </xsl:if> -->
1637
1652
 
1638
1653
 
1639
1654
  <!-- horizontal row separator -->
@@ -1696,7 +1711,11 @@
1696
1711
 
1697
1712
 
1698
1713
 
1699
- <!-- except gb and bipm -->
1714
+
1715
+
1716
+
1717
+
1718
+ <!-- except gb -->
1700
1719
 
1701
1720
  <xsl:apply-templates select="../*[local-name()='note']" mode="process"/>
1702
1721
 
@@ -1781,6 +1800,9 @@
1781
1800
 
1782
1801
 
1783
1802
 
1803
+ <!-- <xsl:if test="$namespace = 'bipm'">
1804
+ <xsl:attribute name="height">8mm</xsl:attribute>
1805
+ </xsl:if> -->
1784
1806
 
1785
1807
  <xsl:apply-templates/>
1786
1808
  </fo:table-row>
@@ -2886,6 +2908,8 @@
2886
2908
 
2887
2909
 
2888
2910
 
2911
+
2912
+
2889
2913
  <fo:inline xsl:use-attribute-sets="note-name-style">
2890
2914
  <xsl:apply-templates select="*[local-name() = 'name']" mode="presentation"/>
2891
2915
  </fo:inline>
@@ -1093,6 +1093,7 @@
1093
1093
 
1094
1094
 
1095
1095
 
1096
+
1096
1097
  </xsl:attribute-set><xsl:variable name="note-body-indent">10mm</xsl:variable><xsl:variable name="note-body-indent-table">5mm</xsl:variable><xsl:attribute-set name="note-name-style">
1097
1098
 
1098
1099
 
@@ -1628,12 +1629,26 @@
1628
1629
 
1629
1630
 
1630
1631
 
1631
- <!-- except gb and bipm -->
1632
1632
 
1633
- <xsl:apply-templates select="../*[local-name()='note']" mode="process"/>
1634
1633
 
1635
1634
 
1635
+ <!-- except gb -->
1636
+
1637
+ <xsl:apply-templates select="../*[local-name()='note']" mode="process"/>
1638
+
1636
1639
 
1640
+ <!-- show Note under table in preface (ex. abstract) sections -->
1641
+ <!-- empty, because notes show at page side in main sections -->
1642
+ <!-- <xsl:if test="$namespace = 'bipm'">
1643
+ <xsl:choose>
1644
+ <xsl:when test="ancestor::*[local-name()='preface']">
1645
+ <xsl:apply-templates select="../*[local-name()='note']" mode="process"/>
1646
+ </xsl:when>
1647
+ <xsl:otherwise>
1648
+ <fo:block/>
1649
+ </xsl:otherwise>
1650
+ </xsl:choose>
1651
+ </xsl:if> -->
1637
1652
 
1638
1653
 
1639
1654
  <!-- horizontal row separator -->
@@ -1696,7 +1711,11 @@
1696
1711
 
1697
1712
 
1698
1713
 
1699
- <!-- except gb and bipm -->
1714
+
1715
+
1716
+
1717
+
1718
+ <!-- except gb -->
1700
1719
 
1701
1720
  <xsl:apply-templates select="../*[local-name()='note']" mode="process"/>
1702
1721
 
@@ -1781,6 +1800,9 @@
1781
1800
 
1782
1801
 
1783
1802
 
1803
+ <!-- <xsl:if test="$namespace = 'bipm'">
1804
+ <xsl:attribute name="height">8mm</xsl:attribute>
1805
+ </xsl:if> -->
1784
1806
 
1785
1807
  <xsl:apply-templates/>
1786
1808
  </fo:table-row>
@@ -2886,6 +2908,8 @@
2886
2908
 
2887
2909
 
2888
2910
 
2911
+
2912
+
2889
2913
  <fo:inline xsl:use-attribute-sets="note-name-style">
2890
2914
  <xsl:apply-templates select="*[local-name() = 'name']" mode="presentation"/>
2891
2915
  </fo:inline>
@@ -1093,6 +1093,7 @@
1093
1093
 
1094
1094
 
1095
1095
 
1096
+
1096
1097
  </xsl:attribute-set><xsl:variable name="note-body-indent">10mm</xsl:variable><xsl:variable name="note-body-indent-table">5mm</xsl:variable><xsl:attribute-set name="note-name-style">
1097
1098
 
1098
1099
 
@@ -1628,12 +1629,26 @@
1628
1629
 
1629
1630
 
1630
1631
 
1631
- <!-- except gb and bipm -->
1632
1632
 
1633
- <xsl:apply-templates select="../*[local-name()='note']" mode="process"/>
1634
1633
 
1635
1634
 
1635
+ <!-- except gb -->
1636
+
1637
+ <xsl:apply-templates select="../*[local-name()='note']" mode="process"/>
1638
+
1636
1639
 
1640
+ <!-- show Note under table in preface (ex. abstract) sections -->
1641
+ <!-- empty, because notes show at page side in main sections -->
1642
+ <!-- <xsl:if test="$namespace = 'bipm'">
1643
+ <xsl:choose>
1644
+ <xsl:when test="ancestor::*[local-name()='preface']">
1645
+ <xsl:apply-templates select="../*[local-name()='note']" mode="process"/>
1646
+ </xsl:when>
1647
+ <xsl:otherwise>
1648
+ <fo:block/>
1649
+ </xsl:otherwise>
1650
+ </xsl:choose>
1651
+ </xsl:if> -->
1637
1652
 
1638
1653
 
1639
1654
  <!-- horizontal row separator -->
@@ -1696,7 +1711,11 @@
1696
1711
 
1697
1712
 
1698
1713
 
1699
- <!-- except gb and bipm -->
1714
+
1715
+
1716
+
1717
+
1718
+ <!-- except gb -->
1700
1719
 
1701
1720
  <xsl:apply-templates select="../*[local-name()='note']" mode="process"/>
1702
1721
 
@@ -1781,6 +1800,9 @@
1781
1800
 
1782
1801
 
1783
1802
 
1803
+ <!-- <xsl:if test="$namespace = 'bipm'">
1804
+ <xsl:attribute name="height">8mm</xsl:attribute>
1805
+ </xsl:if> -->
1784
1806
 
1785
1807
  <xsl:apply-templates/>
1786
1808
  </fo:table-row>
@@ -2886,6 +2908,8 @@
2886
2908
 
2887
2909
 
2888
2910
 
2911
+
2912
+
2889
2913
  <fo:inline xsl:use-attribute-sets="note-name-style">
2890
2914
  <xsl:apply-templates select="*[local-name() = 'name']" mode="presentation"/>
2891
2915
  </fo:inline>
@@ -1093,6 +1093,7 @@
1093
1093
 
1094
1094
 
1095
1095
 
1096
+
1096
1097
  </xsl:attribute-set><xsl:variable name="note-body-indent">10mm</xsl:variable><xsl:variable name="note-body-indent-table">5mm</xsl:variable><xsl:attribute-set name="note-name-style">
1097
1098
 
1098
1099
 
@@ -1628,12 +1629,26 @@
1628
1629
 
1629
1630
 
1630
1631
 
1631
- <!-- except gb and bipm -->
1632
1632
 
1633
- <xsl:apply-templates select="../*[local-name()='note']" mode="process"/>
1634
1633
 
1635
1634
 
1635
+ <!-- except gb -->
1636
+
1637
+ <xsl:apply-templates select="../*[local-name()='note']" mode="process"/>
1638
+
1636
1639
 
1640
+ <!-- show Note under table in preface (ex. abstract) sections -->
1641
+ <!-- empty, because notes show at page side in main sections -->
1642
+ <!-- <xsl:if test="$namespace = 'bipm'">
1643
+ <xsl:choose>
1644
+ <xsl:when test="ancestor::*[local-name()='preface']">
1645
+ <xsl:apply-templates select="../*[local-name()='note']" mode="process"/>
1646
+ </xsl:when>
1647
+ <xsl:otherwise>
1648
+ <fo:block/>
1649
+ </xsl:otherwise>
1650
+ </xsl:choose>
1651
+ </xsl:if> -->
1637
1652
 
1638
1653
 
1639
1654
  <!-- horizontal row separator -->
@@ -1696,7 +1711,11 @@
1696
1711
 
1697
1712
 
1698
1713
 
1699
- <!-- except gb and bipm -->
1714
+
1715
+
1716
+
1717
+
1718
+ <!-- except gb -->
1700
1719
 
1701
1720
  <xsl:apply-templates select="../*[local-name()='note']" mode="process"/>
1702
1721
 
@@ -1781,6 +1800,9 @@
1781
1800
 
1782
1801
 
1783
1802
 
1803
+ <!-- <xsl:if test="$namespace = 'bipm'">
1804
+ <xsl:attribute name="height">8mm</xsl:attribute>
1805
+ </xsl:if> -->
1784
1806
 
1785
1807
  <xsl:apply-templates/>
1786
1808
  </fo:table-row>
@@ -2886,6 +2908,8 @@
2886
2908
 
2887
2909
 
2888
2910
 
2911
+
2912
+
2889
2913
  <fo:inline xsl:use-attribute-sets="note-name-style">
2890
2914
  <xsl:apply-templates select="*[local-name() = 'name']" mode="presentation"/>
2891
2915
  </fo:inline>
@@ -1093,6 +1093,7 @@
1093
1093
 
1094
1094
 
1095
1095
 
1096
+
1096
1097
  </xsl:attribute-set><xsl:variable name="note-body-indent">10mm</xsl:variable><xsl:variable name="note-body-indent-table">5mm</xsl:variable><xsl:attribute-set name="note-name-style">
1097
1098
 
1098
1099
 
@@ -1628,12 +1629,26 @@
1628
1629
 
1629
1630
 
1630
1631
 
1631
- <!-- except gb and bipm -->
1632
1632
 
1633
- <xsl:apply-templates select="../*[local-name()='note']" mode="process"/>
1634
1633
 
1635
1634
 
1635
+ <!-- except gb -->
1636
+
1637
+ <xsl:apply-templates select="../*[local-name()='note']" mode="process"/>
1638
+
1636
1639
 
1640
+ <!-- show Note under table in preface (ex. abstract) sections -->
1641
+ <!-- empty, because notes show at page side in main sections -->
1642
+ <!-- <xsl:if test="$namespace = 'bipm'">
1643
+ <xsl:choose>
1644
+ <xsl:when test="ancestor::*[local-name()='preface']">
1645
+ <xsl:apply-templates select="../*[local-name()='note']" mode="process"/>
1646
+ </xsl:when>
1647
+ <xsl:otherwise>
1648
+ <fo:block/>
1649
+ </xsl:otherwise>
1650
+ </xsl:choose>
1651
+ </xsl:if> -->
1637
1652
 
1638
1653
 
1639
1654
  <!-- horizontal row separator -->
@@ -1696,7 +1711,11 @@
1696
1711
 
1697
1712
 
1698
1713
 
1699
- <!-- except gb and bipm -->
1714
+
1715
+
1716
+
1717
+
1718
+ <!-- except gb -->
1700
1719
 
1701
1720
  <xsl:apply-templates select="../*[local-name()='note']" mode="process"/>
1702
1721
 
@@ -1781,6 +1800,9 @@
1781
1800
 
1782
1801
 
1783
1802
 
1803
+ <!-- <xsl:if test="$namespace = 'bipm'">
1804
+ <xsl:attribute name="height">8mm</xsl:attribute>
1805
+ </xsl:if> -->
1784
1806
 
1785
1807
  <xsl:apply-templates/>
1786
1808
  </fo:table-row>
@@ -2886,6 +2908,8 @@
2886
2908
 
2887
2909
 
2888
2910
 
2911
+
2912
+
2889
2913
  <fo:inline xsl:use-attribute-sets="note-name-style">
2890
2914
  <xsl:apply-templates select="*[local-name() = 'name']" mode="presentation"/>
2891
2915
  </fo:inline>
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  module MPFA
3
- VERSION = "0.5.5"
3
+ VERSION = "0.5.6"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-mpfa
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.5
4
+ version: 0.5.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-10-11 00:00:00.000000000 Z
11
+ date: 2020-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: htmlentities
@@ -218,9 +218,7 @@ executables: []
218
218
  extensions: []
219
219
  extra_rdoc_files: []
220
220
  files:
221
- - ".github/workflows/macos.yml"
222
- - ".github/workflows/ubuntu.yml"
223
- - ".github/workflows/windows.yml"
221
+ - ".github/workflows/rake.yml"
224
222
  - ".gitignore"
225
223
  - ".hound.yml"
226
224
  - ".rubocop.yml"
@@ -1,38 +0,0 @@
1
- # Auto-generated by Cimas: Do not edit it manually!
2
- # See https://github.com/metanorma/cimas
3
- name: macos
4
-
5
- on:
6
- push:
7
- branches: [ master ]
8
- pull_request:
9
- paths-ignore:
10
- - .github/workflows/ubuntu.yml
11
- - .github/workflows/windows.yml
12
-
13
- jobs:
14
- test-macos:
15
- name: Test on Ruby ${{ matrix.ruby }} macOS
16
- runs-on: macos-latest
17
- continue-on-error: ${{ matrix.experimental }}
18
- strategy:
19
- fail-fast: false
20
- matrix:
21
- ruby: [ '2.6', '2.5', '2.4' ]
22
- experimental: [false]
23
- include:
24
- - ruby: '2.7'
25
- experimental: true
26
- steps:
27
- - uses: actions/checkout@master
28
- - name: Use Ruby
29
- uses: actions/setup-ruby@v1
30
- with:
31
- ruby-version: ${{ matrix.ruby }}
32
- - name: Update gems
33
- run: |
34
- sudo gem install bundler --force
35
- bundle install --jobs 4 --retry 3
36
- - name: Run specs
37
- run: |
38
- bundle exec rake
@@ -1,56 +0,0 @@
1
- # Auto-generated by Cimas: Do not edit it manually!
2
- # See https://github.com/metanorma/cimas
3
- name: ubuntu
4
-
5
- on:
6
- push:
7
- branches: [ master ]
8
- tags:
9
- - '*'
10
- pull_request:
11
- paths-ignore:
12
- - .github/workflows/macos.yml
13
- - .github/workflows/windows.yml
14
-
15
- jobs:
16
- test-linux:
17
- name: Test on Ruby ${{ matrix.ruby }} Ubuntu
18
- runs-on: ubuntu-latest
19
- continue-on-error: ${{ matrix.experimental }}
20
- strategy:
21
- fail-fast: false
22
- matrix:
23
- ruby: [ '2.6', '2.5', '2.4' ]
24
- experimental: [false]
25
- include:
26
- - ruby: '2.7'
27
- experimental: true
28
- steps:
29
- - uses: actions/checkout@master
30
- - name: Use Ruby
31
- uses: actions/setup-ruby@v1
32
- with:
33
- ruby-version: ${{ matrix.ruby }}
34
- - name: Update gems
35
- run: |
36
- gem install bundler
37
- bundle install --jobs 4 --retry 3
38
- - name: Run specs
39
- run: |
40
- bundle exec rake
41
- - name: Trigger repositories
42
- if: matrix.ruby == '2.6'
43
- env:
44
- GH_USERNAME: metanorma-ci
45
- GH_ACCESS_TOKEN: ${{ secrets.METANORMA_CI_PAT_TOKEN }}
46
- run: |
47
- curl -LO --retry 3 https://raw.githubusercontent.com/metanorma/metanorma-build-scripts/master/trigger-gh-actions.sh
48
- [[ -f ".github/workflows/dependent_repos.env" ]] && source .github/workflows/dependent_repos.env
49
- CLIENT_PAYLOAD=$(cat <<EOF
50
- "{ "ref": "${GITHUB_REF}", "repo": "${GITHUB_REPOSITORY}" }"
51
- EOF
52
- )
53
- for repo in $REPOS
54
- do
55
- sh trigger-gh-actions.sh $ORGANISATION $repo $GH_USERNAME $GH_ACCESS_TOKEN $GITHUB_REPOSITORY "$CLIENT_PAYLOAD"
56
- done
@@ -1,40 +0,0 @@
1
- # Auto-generated by Cimas: Do not edit it manually!
2
- # See https://github.com/metanorma/cimas
3
- name: windows
4
-
5
- on:
6
- push:
7
- branches: [ master ]
8
- pull_request:
9
- paths-ignore:
10
- - .github/workflows/macos.yml
11
- - .github/workflows/ubuntu.yml
12
-
13
- jobs:
14
- test-windows:
15
- name: Test on Ruby ${{ matrix.ruby }} Windows
16
- runs-on: windows-latest
17
- continue-on-error: ${{ matrix.experimental }}
18
- strategy:
19
- fail-fast: false
20
- matrix:
21
- ruby: [ '2.6', '2.5', '2.4' ]
22
- experimental: [false]
23
- include:
24
- - ruby: '2.7'
25
- experimental: true
26
- steps:
27
- - uses: actions/checkout@master
28
- - name: Use Ruby
29
- uses: actions/setup-ruby@v1
30
- with:
31
- ruby-version: ${{ matrix.ruby }}
32
- - name: Update gems
33
- shell: pwsh
34
- run: |
35
- gem install bundler
36
- bundle config --local path vendor/bundle
37
- bundle install --jobs 4 --retry 3
38
- - name: Run specs
39
- run: |
40
- bundle exec rake