Skip to content

Commit

Permalink
added macos tests
Browse files Browse the repository at this point in the history
  • Loading branch information
comane committed Jul 11, 2024
1 parent 4afc858 commit e9c779c
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.12' # Specify the Python version you need
python-version: '3.12'

- name: Install dependencies
run: |
Expand All @@ -26,3 +26,25 @@ jobs:
run: |
pytest
test-macos:
runs-on: macos-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.12'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install hypothesis
pip install .
- name: Run tests
run: |
pytest

0 comments on commit e9c779c

Please sign in to comment.