Sha256: 7c032e8708e281e8237770935376fcd490166eaa6ad3378763f31b7ec07563e4

Contents?: true

Size: 787 Bytes

Versions: 13

Compression:

Stored size: 787 Bytes

Contents

name: test
on:
  push:
    branches:
      - main
  pull_request:
    types:
      - opened
      - synchronize
      - reopened
  schedule:
    - cron: "00 15 * * *"
jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - '2.5'
          - '2.6'
          - '2.7'
          - '3.0'
          - '3.1'
          - '3.2'
          - jruby
          - truffleruby-head
    steps:
      - uses: actions/checkout@v3
      - run: sudo apt-get update && sudo apt-get install -y nodejs libxslt-dev # nodejs for execjs, libxslt for TruffleRuby nokogiri
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - run: bundle exec rake test

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
haml-6.3.0 .github/workflows/test.yml
haml-6.2.5 .github/workflows/test.yml
haml-6.2.4 .github/workflows/test.yml
haml-6.2.3 .github/workflows/test.yml
haml-6.2.2 .github/workflows/test.yml
haml-6.2.1 .github/workflows/test.yml
haml-6.2.0 .github/workflows/test.yml
haml-6.1.4-java .github/workflows/test.yml
haml-6.1.4 .github/workflows/test.yml
haml-6.1.3-java .github/workflows/test.yml
haml-6.1.3 .github/workflows/test.yml
haml-6.1.2-java .github/workflows/test.yml
haml-6.1.2 .github/workflows/test.yml