Skip to content

CI on GitHub Actions #1

CI on GitHub Actions

CI on GitHub Actions #1

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
ruby-version:
- '1.9'
- '2.0'
- '2.1'
- '2.2'
- '2.3'
- '2.4'
- '2.5'
- '2.6'
- '2.7'
- '3.0'
- '3.1'
- '3.2'
- ruby-head
steps:
- run: sudo apt-get install -y tidy tcl tk
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
continue-on-error: ${{ matrix.ruby-version == 'ruby-head' }}
- run: bundle exec rake
continue-on-error: ${{ matrix.ruby-version == 'ruby-head' }}