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.
2 parents ddb4b46 + 844e868 commit 2c941a7Copy full SHA for 2c941a7
.github/workflows/test.yml
@@ -17,6 +17,13 @@ jobs:
17
matrix:
18
ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
19
os: [ ubuntu-latest, macos-latest ]
20
+ exclude:
21
+ - ruby: 2.3
22
+ os: macos-latest
23
+ - ruby: 2.4
24
25
+ - ruby: 2.5
26
27
runs-on: ${{ matrix.os }}
28
steps:
29
- uses: actions/checkout@v4
@@ -32,4 +39,10 @@ jobs:
32
39
- name: Install dependencies
33
40
run: bundle install
34
41
- name: Run test
42
+ if: ${{ matrix.os == 'ubuntu-latest' }}
35
43
run: rake compile test
44
+ - name: Run test
45
+ if: ${{ matrix.os == 'macos-latest' }}
46
+ run: |
47
+ rake compile -- --with-opt-dir=$(brew --prefix gdbm)
48
+ rake test
0 commit comments