We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a9b2ca commit 0916309Copy full SHA for 0916309
1 file changed
.github/workflows/checks.yml
@@ -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