Skip to content

Commit 0916309

Browse files
committed
setup GitHub Actions
1 parent 1a9b2ca commit 0916309

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/checks.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Checks
2+
3+
on:
4+
push:
5+
branches:
6+
- "**"
7+
pull_request:
8+
types:
9+
- opened
10+
- synchronize # when a PR is updated
11+
- reopened # when a PR is reopened
12+
- ready_for_review # when a PR is ready for review
13+
- review_requested # when a PR is requested for review
14+
15+
jobs:
16+
ci:
17+
runs-on: ubuntu-latest
18+
19+
steps:
20+
- name: Check out
21+
uses: actions/checkout@v4
22+
23+
- name: Set up Ruby
24+
uses: ruby/setup-ruby@v1
25+
with:
26+
bundler-cache: true
27+
28+
- name: Install
29+
run: bundle install
30+
31+
- name: Run
32+
run: rake run

0 commit comments

Comments
 (0)