Skip to content

MacOS

MacOS #47

Workflow file for this run

name: MacOS
on:
push:
tags:
- "*"
workflow_dispatch:
jobs:
test-on-macos:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
name: Test BusyLight For Humans ${{ matrix.python-version }} on MacOS
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install pip/poetry/pytest
run: |
python -m pip install --upgrade pip
pip install poetry pytest
- name: Install Busylight-For-Humans with WebAPI
run: |
poetry install -E webapi
- name: Test with pytest
run: |
poetry run pytest