summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2020-01-28 05:31:40 -0700
committerGitHub <noreply@github.com>2020-01-28 05:31:40 -0700
commitd91576b22be2179ee83c4b39df0239e90c6ea8a4 (patch)
tree8e9548ac8602a14ca4a270fdcef8869360d409da /.github
parent7af00dee14c1b3bd0c187bb762b46fd670fbe8e4 (diff)
enable CI for Ruby 2.3 on Windows (PR #1526)
- move rubocop deps into group in Gemfile - exclude lint group when building on Windows - move simplecov dep to Gemfile - disable lint deps on Ruby 2.3 on Windows - pin version of bundler
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 5fa0a788..bb266824 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -5,7 +5,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
- ruby: [jruby, '2.7', '2.6', '2.5', '2.4']
+ ruby: [jruby, '2.7', '2.6', '2.5', '2.4', '2.3']
env:
PYGMENTS_VERSION: '~> 1.2.0'
steps:
@@ -15,9 +15,9 @@ jobs:
uses: eregon/use-ruby-action@v1.10.0
with:
ruby-version: ${{ matrix.ruby }}
- - name: Bundle
+ - name: Install dependencies
run: |
- gem install bundler
- bundle --path .bundle/gems --jobs 3 --retry 3 --without docs
+ gem install bundler --version 2.1.2
+ bundle --jobs 3 --retry 3 --path .bundle/gems --without docs lint coverage
- name: Test
run: bundle exec ruby -w $(bundle exec ruby -e "print File.join Gem.bindir, 'rake'") spec