Skip to content

Install cmake and ninja #4

Install cmake and ninja

Install cmake and ninja #4

Workflow file for this run

name: OSX Tests
on:
workflow_dispatch:
push:
pull_request:
jobs:
testing-osx:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
cache: 'pip'
- name: Install dependencies
run: |
pip install -r conans/requirements.txt
pip install -r conans/requirements_server.txt
pip install -r conans/requirements_dev.txt
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.23.0"
ninjaVersion: "1.10.2"
- name: Run tests
run: |
python -m pytest .