Skip to content

build: update macOS workflow to use setup-cpp-compiler action #50

build: update macOS workflow to use setup-cpp-compiler action

build: update macOS workflow to use setup-cpp-compiler action #50

Workflow file for this run

name: MacOS_Tests
on: [push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.11]
os: [macos-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Setup C/C++ Compiler
id: setup-compiler
uses: rlalik/setup-cpp-compiler@master
with:
compiler: latest
- name: Install macOS SDK headers
run: |
sudo rm -rf /Library/Developer/CommandLineTools
xcode-select --install || true
sudo xcode-select --reset
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .
python -m pip install pytest
- name: Run Tests
run: |
pytest tests