Skip to content

Commit c16299b

Browse files
authored
Setup CI on Actions
1 parent c0ec977 commit c16299b

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/main.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CI
2+
on: [push]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
matrix:
8+
ruby-version: [2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6]
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v1
12+
- name: Test
13+
run: |
14+
ruby -v
15+
container:
16+
image: ruby:${{matrix.ruby-version}}

0 commit comments

Comments
 (0)