Sha256: e138cf2d4ff3bd03e04aa6717439da58cdd0a38a9313a0bc6279f5ca3e920db3

Contents?: true

Size: 676 Bytes

Versions: 2

Compression:

Stored size: 676 Bytes

Contents

name: ubuntu

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

jobs:
  build:
    strategy:
      matrix:
        os: [ 'ubuntu-latest' ]
        ruby: [ 2.7, 2.6, 2.5, ruby-head ]
        opal: [ 1.0.3 ]

    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 test
        run:
          - "bundle exec exe/opal-rspec spec-opal-passing"
          - "bundle exec rspec"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
opal-rspec-0.8.0 .github/workflows/build.yml
opal-rspec-0.8.0.alpha3 .github/workflows/build.yml