summaryrefslogtreecommitdiff
path: root/.github/workflows/development.yml
blob: 1f3776c09115761244bf62bc160b42b17594b0d1 (plain)
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
name: Development

on: [push]

jobs:
  
  test:
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest, macos-latest]
        ruby: [2.3, 2.4, 2.5, 2.6, 2.7, jruby]
    runs-on: ${{matrix.os}}
    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{matrix.ruby}}
    - uses: actions/cache@v1
      with:
        path: vendor/bundle
        key: bundle-use-ruby-${{matrix.os}}-${{matrix.ruby}}-${{hashFiles('**/Gemfile')}}
        restore-keys: |
          bundle-use-ruby-${{matrix.os}}-${{matrix.ruby}}-
    
    - name: Installing packages
      if: matrix.os == 'ubuntu-latest'
      run: sudo apt-get install libfcgi-dev libmemcached-dev
    
    - name: Installing packages
      if: matrix.os == 'macos-latest'
      run: brew install fcgi libmemcached
    
    - name: Bundle install...
      run: |
        bundle config path vendor/bundle
        bundle install
    - run: bundle exec rake