Skip to content

Commit bc43691

Browse files
committed
Add a GitHub action to run all tests on push
1 parent 5a9ce5d commit bc43691

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/run_tests.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Run Tests
2+
on: [ push ]
3+
jobs:
4+
run_tests:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Checkout code
8+
uses: actions/checkout@v4
9+
- name: Set up Ruby
10+
uses: ruby/setup-ruby@v1
11+
with:
12+
ruby-version: .ruby-version
13+
bundler-cache: true
14+
- name: Run specs
15+
run: rake

0 commit comments

Comments
 (0)