Sha256: fed90512dfde51b68755cf4910c11ad0b8d9949e76f6bcfee0cff7fa14e45dbb

Contents?: true

Size: 600 Bytes

Versions: 12

Compression:

Stored size: 600 Bytes

Contents

name: Main
on:
  workflow_dispatch:
  push:
    branches:
      - main

  pull_request:
    types: [opened, synchronize, reopened]
jobs:
  ci:
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - "3.0"
          - "3.1"
          - "3.2"
    name: CI
    runs-on: ubuntu-latest
    env:
      CI: true
    steps:
      - uses: actions/checkout@master
      - uses: ruby/setup-ruby@v1
        with:
          bundler-cache: true
          ruby-version: ${{ matrix.ruby }}
      - name: Test
        run: |
          bundle exec rake test
          bundle exec rake stree:check

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
w_syntax_tree-erb-0.10.5 .github/workflows/main.yml
w_syntax_tree-erb-0.10.4 .github/workflows/main.yml
w_syntax_tree-erb-0.10.3 .github/workflows/main.yml
w_syntax_tree-erb-0.10.2 .github/workflows/main.yml
w_syntax_tree-erb-0.10.1 .github/workflows/main.yml
w_syntax_tree-erb-0.10.0 .github/workflows/main.yml
w_syntax_tree-erb-0.9.5 .github/workflows/main.yml
w_syntax_tree-erb-0.9.4 .github/workflows/main.yml
w_syntax_tree-erb-0.9.3 .github/workflows/main.yml
w_syntax_tree-erb-0.9.2 .github/workflows/main.yml
w_syntax_tree-erb-0.9.1 .github/workflows/main.yml
w_syntax_tree-erb-0.9.0 .github/workflows/main.yml