36 lines
801 B
YAML
36 lines
801 B
YAML
name: macOS
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- dev
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- dev
|
|
|
|
jobs:
|
|
testMac:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: Python Setup
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.10"
|
|
architecture: x64
|
|
- name: Install Packages (brew)
|
|
run: |
|
|
brew install enchant
|
|
- name: Checkout Source
|
|
uses: actions/checkout@v3
|
|
- name: Install Dependencies (pip)
|
|
run: |
|
|
pip install -U pyobjc -r requirements.txt -r tests/requirements.txt
|
|
- name: Run Tests
|
|
run: |
|
|
export QT_QPA_PLATFORM=offscreen
|
|
pytest -v --cov=novelwriter --timeout=60
|
|
- name: Upload to Codecov
|
|
uses: codecov/codecov-action@v3
|