cmake versions #1
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: 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 . |