Sha256: 16fdc53d519891e8c4ce9410366c34a550ea7921d022e62b22efea230b634bd8

Contents?: true

Size: 706 Bytes

Versions: 3

Compression:

Stored size: 706 Bytes

Contents

name: CI
on:
  push:
    branches: [ '**' ]
    tags-ignore: [ '**' ]
  pull_request:
jobs:
  build:
    strategy:
      matrix:
        ruby: [ 'jruby-9.2', '2.3', '3.0' ]
        python: [ '3.5', '3.9' ]
        platform: [ ubuntu-latest, macos-latest, windows-latest ]
    runs-on: ${{ matrix.platform }}
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Setup Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - name: Setup Python
        uses: actions/setup-python@v2
        with:
          python-version: ${{ matrix.python }}
      - name: Run Tests
        run: bundle exec rake test

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pygments.rb-2.0.0 .github/workflows/ci.yml
pygments.rb-2.0.0.rc3 .github/workflows/ci.yml
pygments.rb-2.0.0.rc2 .github/workflows/ci.yml