We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32e8815 commit 93932b4Copy full SHA for 93932b4
2 files changed
.circleci/config.yml
.github/workflows/test.yml
@@ -0,0 +1,19 @@
1
+---
2
+name: Test
3
+on: [push]
4
+
5
+jobs:
6
+ test:
7
+ strategy:
8
+ fail-fast: false
9
+ matrix:
10
+ ruby: [3.2, 3.3, 3.4]
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v5
14
+ - uses: ruby/setup-ruby@v1
15
+ with:
16
+ ruby-version: ${{ matrix.ruby }}
17
+ bundler-cache: true
18
+ - name: RSpec
19
+ run: bundle exec rspec
0 commit comments