forked from conan-io/conan
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (35 loc) · 900 Bytes
/
osx-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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 .