File: test.yml

package info (click to toggle)
ruby-gettext-i18n-rails 2.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 268 kB
  • sloc: ruby: 1,214; makefile: 6
file content (29 lines) | stat: -rw-r--r-- 698 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
name: Test
on:
  - push
  - pull_request
jobs:
  run:
    strategy:
      fail-fast: false
      matrix:
        gemfile:
          - gemfiles/rails70.gemfile
          - gemfiles/rails71.gemfile
        ruby-version:
          - "3.0"
          - "3.1"
          - "3.2"
        runs-on:
          - ubuntu-latest
    name: ${{ matrix.ruby-version}} on ${{ matrix.runs-on }} with ${{ matrix.gemfile }}
    runs-on: ${{ matrix.runs-on }}
    env:
      BUNDLE_GEMFILE: ${{ matrix.gemfile }}
    steps:
      - uses: actions/checkout@master
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby-version }}
          bundler-cache: true
      - run: bundle exec rake