-
-
Notifications
You must be signed in to change notification settings - Fork 39
42 lines (39 loc) · 870 Bytes
/
CI.yml
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
39
40
41
42
name: CI
on:
push:
branches:
- develop
- master
pull_request:
jobs:
Build:
strategy:
fail-fast: true
matrix:
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
ruby:
- head
- '3.0'
- '2.7'
- '2.6'
- '2.5'
os:
- ubuntu
- macos
runs-on: ${{ matrix.os }}-latest
continue-on-error: ${{ matrix.ruby == '3.0' || matrix.ruby == 'head'}}
name: Ruby ${{ matrix.ruby }} (${{ matrix.os }})
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: build
run: |
cd ./ext/agoo
ruby extconf.rb
make
- name: test
run: |
cd test
./tests.sh