Skip to content

Commit

Permalink
Add GitHub Actions workflow for macOS compatibility testing
Browse files Browse the repository at this point in the history
  • Loading branch information
giovanni.buroni committed Nov 9, 2024
1 parent f703da8 commit e718d09
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Python Tests on macOS

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: macos-latest

steps:
# Check out the code
- name: Check out code
uses: actions/checkout@v2

# Set up Python (use a version compatible with Apple M1)
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10.15' # Specify the required Python version here

# Install dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# Run tests with pytest
- name: Run tests
run: |
pytest

0 comments on commit e718d09

Please sign in to comment.