summaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
blob: 7e38fa26b004fbea92a9defcb09f3cc6309df5e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: ci
on: [push]
jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: [ '2.4', '2.5', '2.6', '2.7' ]
    name: RSpec Ruby ${{ matrix.ruby }}
    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - name: test
        run: ./bin/test