File: experimental.yml

package info (click to toggle)
ruby-typhoeus 1.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 656 kB
  • sloc: ruby: 4,489; makefile: 6
file content (33 lines) | stat: -rw-r--r-- 864 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
name: Experimental
on: [push, pull_request]
jobs:
  build:
    env:
      BUNDLE_GEMFILE: Gemfile
    runs-on: ${{ matrix.os }}-latest
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu, macos]
        ruby-version:
          - ruby-head
          - jruby-head
          - truffleruby-head
    steps:
      - uses: actions/checkout@v3
      - name: Install libcurl header
        run: |
          if ${{ matrix.os == 'macos' }}
          then
            brew install curl
          else
            sudo apt update && sudo apt install -y --no-install-recommends libcurl4-openssl-dev
          fi
      - name: Set up Ruby ${{ matrix.ruby-version }}
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby-version }}
          bundler-cache: true
      - name: Run tests
        run: |
          bundle exec rake