Skip to content

Commit

Permalink
add cmake action
Browse files Browse the repository at this point in the history
  • Loading branch information
j-faria committed Nov 21, 2023
1 parent 8d83916 commit e88bafb
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/cmake_versions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
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 .

0 comments on commit e88bafb

Please sign in to comment.