We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a4d461 commit 2ad0f44Copy full SHA for 2ad0f44
.github/workflows/ci.yml
@@ -0,0 +1,36 @@
1
+name: CI
2
+on:
3
+ push:
4
+ pull_request:
5
+ dispatch_workflow:
6
+
7
+concurrency:
8
+ group: ${{ github.head_ref || github.sha }}-${{ github.workflow }}
9
+ cancel-in-progress: true
10
11
+permissions: read-all
12
13
+jobs:
14
+ test:
15
+ runs-on: ${{ matrix.os }}
16
+ strategy:
17
+ fail-fast: false
18
+ matrix:
19
+ ruby:
20
+ - 3.2
21
+ - 3.3
22
+ - 3.4
23
+ os:
24
+ - ubuntu-latest
25
+ - windows-latest
26
+ name: Test with Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
27
+ steps:
28
+ - uses: actions/checkout@v4
29
+ - uses: ruby/setup-ruby@v1
30
+ with:
31
+ ruby-version: ${{ matrix.ruby }}
32
+ - name: unit testing
33
+ env:
34
+ CI: true
35
+ run: |
36
+ bundle exec rake test TESTOPTS="-v --no-show-detail-immediately"
0 commit comments