summaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
blob: 794eb1d0ecd52bea2de4e3d885b5fea0f1436338 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: Test

on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: [ '2.5', '2.6', '2.7' ]
    steps:
    - uses: actions/checkout@v1
    - uses: actions/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
    - name: cibuild
      run: bin/cibuild