File: ci.yml

package info (click to toggle)
ruby-prawn-icon 4.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,596 kB
  • sloc: ruby: 1,398; makefile: 5
file content (41 lines) | stat: -rw-r--r-- 957 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: CI

on:
  push:
    branches:
      - master
  pull_request:
    branches:
      - master

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - '2.7'
          - '3.1'
        gemfile:
          - gemfiles/prawn-1.3.0.gemfile
          - gemfiles/prawn-2.4.0.gemfile
          - gemfiles/prawn-master.gemfile
        exclude:
          - ruby: '3.1'
            gemfile: gemfiles/prawn-1.3.0.gemfile
          - ruby: '3.1'
            gemfile: gemfiles/prawn-2.4.0.gemfile
    steps:
      - uses: actions/checkout@v4
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - name: Build and test with Rake
        env:
          BUNDLE_GEMFILE: ${{ matrix.gemfile }}
        run: |
          echo 'bundle install --gemfile=${{ matrix.gemfile }}'
          bundle install --jobs 4 --retry 3
          bundle exec rake