new test on macos

pull/378/head
evelynmitchell 1 year ago
parent 37d1662208
commit 9d5f3e7663

@ -0,0 +1,32 @@
name: Python package
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: 3.10
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
poetry install
- name: Run tests
run: |
poetry run pytest
Loading…
Cancel
Save