Skip to content

Commit 9048cde

Browse files
committed
ci: unify configurations
1 parent 7bbf102 commit 9048cde

4 files changed

Lines changed: 35 additions & 77 deletions

File tree

.github/workflows/macos.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/workflows/ubuntu.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)