We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bbf102 commit 9048cdeCopy full SHA for 9048cde
4 files changed
.github/workflows/macos.yml
.github/workflows/test.yml
@@ -0,0 +1,35 @@
1
+name: Test
2
+
3
+on:
4
+ - push
5
+ - pull_request
6
7
+jobs:
8
+ test:
9
+ name: >-
10
+ ${{ matrix.os }} ${{ matrix.ruby }}
11
+ runs-on: ${{ matrix.os }}-latest
12
+ strategy:
13
+ fail-fast: false
14
+ matrix:
15
+ os:
16
+ - ubuntu
17
+ - macos
18
+ - windows
19
+ ruby:
20
+ - 2.5
21
+ - 2.6
22
+ - 2.7
23
+ - head
24
+ include:
25
+ - { os: windows , ruby: mingw }
26
+ - { os: windows , ruby: mswin }
27
+ exclude:
28
+ - { os: windows , ruby: head }
29
+ steps:
30
+ - uses: actions/checkout@v2
31
+ - uses: ruby/setup-ruby@v1
32
+ with:
33
+ ruby-version: ${{ matrix.ruby }}
34
+ - run: bundle install
35
+ - run: rake
.github/workflows/ubuntu-rvm.yml
.github/workflows/ubuntu.yml
0 commit comments