Skip to content

Commit b97d437

Browse files
committed
created separate job for testing macos
1 parent bfbdcf6 commit b97d437

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/test_suite.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,18 @@ jobs:
3131
pip install tox tox-gh-actions
3232
- name: Test with tox
3333
run: tox
34+
test_macos:
35+
runs-on: macos-latest
36+
steps:
37+
- uses: actions/checkout@v4
38+
- name: Set up Python 3.11
39+
uses: actions/setup-python@v5
40+
with:
41+
python-version: '3.11'
42+
architecture: x64
43+
- name: Install Dependencies
44+
run:
45+
python -m pip install --upgrade pip &&
46+
pip install tox tox-gh-actions
47+
- name: Test with tox
48+
run: tox

0 commit comments

Comments
 (0)