Sha256: 1a38a71ec41138b65c09e782d9af747d69c09bca9ee3f6324d81074295d954c7
Contents?: true
Size: 858 Bytes
Versions: 12
Compression:
Stored size: 858 Bytes
Contents
name: ubuntu on: push: branches: [ master ] tags: - '*' pull_request: paths-ignore: - .github/workflows/macos.yml - .github/workflows/windows.yml jobs: test-linux: name: Test on Ruby ${{ matrix.ruby }} Ubuntu runs-on: ubuntu-latest continue-on-error: ${{ matrix.experimental }} strategy: fail-fast: false matrix: ruby: [ '2.6', '2.5' ] experimental: [false] include: - ruby: '2.7' experimental: true steps: - uses: actions/checkout@master - name: Use Ruby uses: actions/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Update gems run: | gem install bundler bundle install --jobs 4 --retry 3 - name: Run specs run: | bundle exec rake
Version data entries
12 entries across 12 versions & 2 rubygems