diff --git a/.github/workflows/cmake_versions.yml b/.github/workflows/cmake_versions.yml new file mode 100644 index 0000000..1269167 --- /dev/null +++ b/.github/workflows/cmake_versions.yml @@ -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/actions-setup-cmake@v1.13 + 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 .