Skip to content

Commit 25df166

Browse files
committed
Create .github/workflows/ci.yaml
1 parent fceb13b commit 25df166

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/ci.yaml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
on: push
2+
jobs:
3+
build:
4+
runs-on: ubuntu-latest
5+
name: script/cibuild
6+
steps:
7+
- uses: actions/checkout@v2
8+
- uses: actions/setup-ruby@v1
9+
with:
10+
ruby-version: 2.7
11+
- name: build
12+
run: script/bootstrap
13+
- name: test
14+
run: script/cibuild

0 commit comments

Comments
 (0)