Install bazel and meson #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
pip install meson | |
- uses: lukka/get-cmake@latest | |
with: | |
cmakeVersion: "~3.23.0" | |
ninjaVersion: "1.10.2" | |
- name: Install xcodegen | |
run: | | |
brew install xcodegen | |
- name: Install bazel | |
run: | | |
brew install bazel | |
- name: Run tests | |
run: | | |
python -m pytest . |