Merge pull request #142 from cmake-wheel/pre-commit-ci-update-config #582
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: Check helpers | |
on: ["push", "pull_request"] | |
jobs: | |
test: | |
name: Check helpers | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: setup | |
run: | | |
python -m pip install -U pip | |
python -m pip install . | |
- name: CMake | |
run: python -m cmeel cmake | |
- name: lib | |
run: python -m cmeel lib | |
- name: pc | |
run: python -m cmeel pc | |
- name: CMake script | |
run: cmeel cmake | |
- name: lib script | |
run: cmeel lib | |
- name: pc script | |
run: cmeel pc | |
- name: show version | |
run: cmeel version |