Skip to content

Commit 317c8b8

Browse files
sebastianrakelbastelfreak
authored andcommitted
Use os matrix for cache builds
The cache is OS specific, so we need to ensure that we generate it on Windows and Linux
1 parent ba95adb commit 317c8b8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/tests.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,12 @@ jobs:
3636
uses: voxpupuli/ruby-version@v1
3737

3838
cache_modules:
39-
runs-on: ubuntu-24.04
4039
name: 'Run r10k and update module cache'
40+
strategy:
41+
fail-fast: false
42+
matrix:
43+
os: [ubuntu-24.04, windows-2025]
44+
runs-on: ${{ matrix.os }}
4145
steps:
4246
- uses: actions/checkout@v5
4347
- name: Install Ruby ${{ matrix.ruby }}

0 commit comments

Comments
 (0)