We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2724c3f commit 5363c3fCopy full SHA for 5363c3f
1 file changed
.github/workflows/ci.yml
@@ -1,19 +1,26 @@
1
name: CI
2
3
on:
4
-- push
5
-- pull_request
+ push:
+ branches:
6
+ - master
7
+ pull_request:
8
+ types:
9
+ - opened
10
+ - synchronize
11
+ - reopened
12
13
jobs:
14
test:
15
name: Test
- runs-on: ${{ matrix.os }}
16
+ runs-on: ${{ matrix.os }} ${{ matrix.ruby }}
17
18
strategy:
19
fail-fast: false
20
matrix:
21
os:
- - ubuntu-latest
22
+ - ubuntu-20.04
23
+ - ubuntu-18.04
24
- ubuntu-16.04
25
- macos-latest
26
- windows-latest
0 commit comments