Skip to content

cmake versions

cmake versions #1

name: cmake versions
on:
workflow_dispatch:
#pull_request:
#push:
# branches:
# - main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
cmake-version: ["3.27"]
steps:
- uses: actions/checkout@v3
- name: Setup cmake
uses: jwlawson/[email protected]
with:
cmake-version: ${{ matrix.cmake-version }}
- name: Use cmake
run: cmake --version
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Dependencies
run: |
pip install pip -U
pip install pytest
- name: Check versions
run: |
python --version
pip --version
cmake --version
- name: Build and install kima
run: |
pip install --verbose .