Sha256: 1332d5e8360c00eb516595face1327894c32f999ee84da824ea9aeac82b20e22

Contents?: true

Size: 771 Bytes

Versions: 10

Compression:

Stored size: 771 Bytes

Contents

name: Main
on:
- push
- pull_request
jobs:
  ci:
    strategy:
      fail-fast: false
      matrix:
        ruby:
        - '2.7.0'
        - '3.0'
        - '3.1'
        - head
    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

  check:
    name: Check
    runs-on: ubuntu-latest
    env:
      CI: true
    steps:
    - uses: actions/checkout@master
    - uses: ruby/setup-ruby@v1
      with:
        bundler-cache: true
        ruby-version: '3.1'
    - name: Check
      run: |
        bundle exec rake stree:check
        bundle exec rubocop

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
syntax_tree-4.2.0 .github/workflows/main.yml
syntax_tree-4.1.0 .github/workflows/main.yml
syntax_tree-4.0.2 .github/workflows/main.yml
syntax_tree-4.0.1 .github/workflows/main.yml
syntax_tree-4.0.0 .github/workflows/main.yml
syntax_tree-3.6.3 .github/workflows/main.yml
syntax_tree-3.6.2 .github/workflows/main.yml
syntax_tree-3.6.1 .github/workflows/main.yml
syntax_tree-3.6.0 .github/workflows/main.yml
syntax_tree-3.5.0 .github/workflows/main.yml