summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorDan Allen <dan@opendevise.com>2021-03-18 02:49:41 -0600
committerDan Allen <dan@opendevise.com>2021-03-18 02:49:41 -0600
commit537704ad6e98f06a78d3e85e9942e7f7a01533ab (patch)
tree02ea3e18d427acfcbac01a9e2c947fe80db98b56 /.github/workflows
parentb3d1f7ef97277121be273d6bb8dc68fe0422fa9e (diff)
disable Pygments tests on JRuby 9.1 in CI
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index dd82d2a0..d1758dee 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -21,8 +21,9 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest]
ruby: ['2.3', '2.4', '2.5', '2.6', '2.7', '3.0']
- rouge-version: [~]
asciimath-version: [~]
+ pygments-version: ['~> 1.2.0']
+ rouge-version: [~]
exclude:
- os: ubuntu-latest
ruby: '3.0'
@@ -31,6 +32,7 @@ jobs:
ruby: truffleruby-20.2.0
- os: ubuntu-latest
ruby: jruby-9.1.17.0
+ pygments-version: ~
- os: ubuntu-latest
ruby: jruby-9.2.13.0
- os: macos-latest
@@ -47,7 +49,6 @@ jobs:
runs-on: ${{ matrix.os }}
env:
COVERAGE: ${{ matrix.primary }}
- PYGMENTS_VERSION: '~> 1.2.0'
SOURCE_DATE_EPOCH: '1521504000'
steps:
- name: Checkout
@@ -71,6 +72,9 @@ jobs:
- name: Set AsciiMath version
if: matrix.asciimath-version
run: echo 'ASCIIMATH_VERSION=${{ matrix.asciimath-version }}' >> $GITHUB_ENV
+ - name: Set Pygments version
+ if: matrix.pygments-version
+ run: echo 'PYGMENTS_VERSION=${{ matrix.pygments-version }}' >> $GITHUB_ENV
- name: Set Rouge version
if: matrix.rouge-version
run: echo 'ROUGE_VERSION=${{ matrix.rouge-version }}' >> $GITHUB_ENV