Skip to content

Workflow file for this run

on: [push, pull_request, workflow_dispatch]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2019, macos-latest, ubuntu-latest]
include:
- os: windows-2019
- os: macos-latest
- os: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install Conan
run: pip install "conan<2.0" pytest && conan --version
- name: Setup cmake
uses: jwlawson/[email protected]
with:
cmake-version: '3.16.x'
- name: Run Tests
run: pytest tests.py -rA -v