Skip to content

Commit 104b7f6

Browse files
committed
initial gha workflow
1 parent 6f919cd commit 104b7f6

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/ci.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+
test:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Checkout code
8+
uses: actions/checkout@v3
9+
10+
- name: Install Ruby!
11+
uses: ruby/setup-ruby@v1
12+
with:
13+
ruby-version: "3.2.2"
14+
15+
- name: rake check
16+
run: rake check

0 commit comments

Comments
 (0)