Skip to content

Commit 5c32974

Browse files
committed
Fix test coverage.
1 parent c20091f commit 5c32974

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/test-coverage.yaml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,24 @@ env:
1111

1212
jobs:
1313
test:
14-
name: ${{matrix.ruby}} on ${{matrix.os}}
14+
name: ${{matrix.ruby}} on ${{matrix.os}} ${{matrix.gemfile}}
1515
runs-on: ${{matrix.os}}-latest
16+
env:
17+
BUNDLE_GEMFILE: ${{matrix.gemfile}}
1618

1719
strategy:
1820
matrix:
1921
os:
2022
- ubuntu
21-
- macos
22-
23+
2324
ruby:
2425
- "3.4"
26+
27+
gemfile:
28+
- gems/rack-v1.rb
29+
- gems/rack-v2.rb
30+
- gems/rack-v30.rb
31+
- gems/rack-v31.rb
2532

2633
steps:
2734
- uses: actions/checkout@v4
@@ -38,7 +45,7 @@ jobs:
3845
with:
3946
include-hidden-files: true
4047
if-no-files-found: error
41-
name: coverage-${{matrix.os}}-${{matrix.ruby}}
48+
name: coverage-${{matrix.os}}-${{matrix.ruby}}-${{matrix.gemfile}}
4249
path: .covered.db
4350

4451
validate:

0 commit comments

Comments
 (0)