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

on: [push]

jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest]
        ruby: [2.3, 2.4, 2.5, 2.6, 2.7, jruby, truffleruby]
    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: Install dependencies...
      run: |
        sudo apt-get install libfcgi-dev libmemcached-dev
        bundle config path vendor/bundle
        bundle install
    - run: bundle exec rake