Sha256: 465a3510a3094efc232ab400869ae41d26eb1bc4d34e74346175fb0153c71ec4

Contents?: true

Size: 507 Bytes

Versions: 9

Compression:

Stored size: 507 Bytes

Contents

name: CI

on:
  push:
  pull_request:
  workflow_dispatch:
#  schedule:
#    - cron: '42 5 * * *'

jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        ruby: [ '3.0' ]

    runs-on: ubuntu-latest
    name: Ruby ${{matrix.ruby}}
    container: ruby:${{matrix.ruby}}

    steps:
    - uses: actions/checkout@v3

    - name: Show ruby Version
      run: |
        ruby -v

    - name: Install Modules
      run: |
        ./bin/setup

    - name: Run tests
      run: |
        rake spec


Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
draftjs_html-0.34.0 .github/workflows/ci.yml
draftjs_html-0.33.0 .github/workflows/ci.yml
draftjs_html-0.32.0 .github/workflows/ci.yml
draftjs_html-0.31.0 .github/workflows/ci.yml
draftjs_html-0.30.0 .github/workflows/ci.yml
draftjs_html-0.29.0 .github/workflows/ci.yml
draftjs_html-0.28.0 .github/workflows/ci.yml
draftjs_html-0.27.0 .github/workflows/ci.yml
draftjs_html-0.26.0 .github/workflows/ci.yml