Sha256: af5b6e48a170bc0cdb740a39f85d355bc43196ebfc55e9101d657f53616d6a08

Contents?: true

Size: 842 Bytes

Versions: 6

Compression:

Stored size: 842 Bytes

Contents

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby

name: CI

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: ['2.6', '2.7', '3.0', '3.1']

    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: true
    - name: Run tests
      run: bundle exec rake

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
synvert-core-1.9.1 .github/workflows/main.yml
synvert-core-1.9.0 .github/workflows/main.yml
synvert-core-1.8.1 .github/workflows/main.yml
synvert-core-1.8.0 .github/workflows/main.yml
synvert-core-1.7.0 .github/workflows/main.yml
synvert-core-1.6.0 .github/workflows/main.yml