We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3dcdb6f commit e3ea9a6Copy full SHA for e3ea9a6
.github/workflows/main.yml
@@ -0,0 +1,17 @@
1
+name: "Run the test suite"
2
+on: push
3
+
4
+jobs:
5
+ test:
6
+ timeout-minutes: 10
7
+ name: "Testing the gem"
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: "Checkout code"
11
+ uses: "actions/checkout@v5"
12
+ - name: "Setup ruby"
13
+ uses: "ruby/setup-ruby@v1"
14
+ with:
15
+ bundler-cache: true
16
+ - name: "Run the test suite"
17
+ run: "bundle exec rake test"
.ruby-version
@@ -0,0 +1 @@
+3.4.7
0 commit comments