Sha256: d2a4f1caec03b177c2fc82b5489ab64689c0799d44bbb3dd3251e267ac1e7719

Contents?: true

Size: 717 Bytes

Versions: 1

Compression:

Stored size: 717 Bytes

Contents

name: ubuntu

on:
  push:
    branches:
      - master
      - "*-stable"
      - "*/ci-check"
  pull_request:
    branches:
      - master

jobs:
  build:
    strategy:
      matrix:
        os: [ 'ubuntu-latest' ]
        ruby: [ ruby-head, 3.1, "3.0", 2.7 ]
        opal: [ master, 1.6, 1.7 ]

    runs-on: ${{ matrix.os }}

    env:
      OPAL_VERSION: ${{ matrix.opal }}

    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - name: Setup project
        run: bin/setup
      - name: Run opal-rspec test
        run: "bundle exec exe/opal-rspec spec-opal-passing"
      - name: Run rspec test
        run: bundle exec rspec

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
opal-rspec-1.1.0.alpha1 .github/workflows/build.yml