Skip to content

Commit 2d45361

Browse files
committed
ci(tests): Also test macos-latest
1 parent ae0e680 commit 2d45361

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/tests.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,25 @@ jobs:
77
# Don't run twice for internal PRs from our own repo
88
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
99

10-
runs-on: ubuntu-latest
10+
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
1313
python-version: [ '3.10' ]
1414
tmux-version: [ '2.6', '2.7', '2.8', '3.0a', '3.1b', '3.2a', 'master' ]
15+
os: [ ubuntu-latest ]
1516
# balance ci coverage across supported python/tmux versions with CI speed
1617
include:
1718
- python-version: '3.7'
1819
tmux-version: '2.6'
1920
- python-version: '3.7'
2021
tmux-version: 'master'
22+
- python-version: '3.7'
23+
tmux-version: '2.6'
24+
os: macos-latest
25+
- python-version: '3.7'
26+
tmux-version: 'master'
27+
os: macos-latest
28+
2129
steps:
2230
- uses: actions/checkout@v1
2331

0 commit comments

Comments
 (0)