Skip to content

Commit eabfa65

Browse files
committed
feat: run only on macos-15 and macos-latest
1 parent 8612697 commit eabfa65

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/test-ansible-playbook.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ on:
1111

1212
jobs:
1313
test-macos:
14-
runs-on: macos-15
14+
runs-on: ${{ matrix.os }}
15+
strategy:
16+
matrix:
17+
os: [macos-15, macos-latest]
1518
env:
1619
TERM: xterm-256color
1720
SHELL: /bin/zsh

.github/workflows/test-menubar-app.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ on:
1414

1515
jobs:
1616
test-swift-app:
17-
runs-on: macos-15
17+
runs-on: ${{ matrix.os }}
18+
strategy:
19+
matrix:
20+
os: [macos-15, macos-latest]
1821

1922
steps:
2023
- name: Checkout code

0 commit comments

Comments
 (0)