Skip to content

Commit 8683445

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

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/tests.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,26 @@ 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
1110
strategy:
1211
matrix:
1312
python-version: [ '3.10' ]
1413
tmux-version: [ '2.6', '2.7', '2.8', '3.0a', '3.1b', '3.2a', 'master' ]
14+
os: [ ubuntu-latest ]
1515
# balance ci coverage across supported python/tmux versions with CI speed
1616
include:
1717
- python-version: '3.7'
1818
tmux-version: '2.6'
1919
- python-version: '3.7'
2020
tmux-version: 'master'
21+
- python-version: '3.7'
22+
tmux-version: '2.6'
23+
os: macos-latest
24+
- python-version: '3.7'
25+
tmux-version: 'master'
26+
os: macos-latest
27+
28+
runs-on: ${{ matrix.os }}
29+
2130
steps:
2231
- uses: actions/checkout@v1
2332

0 commit comments

Comments
 (0)