This action downloads, unpacks, and configures Cmake for use in GitHub Actions workflows. Perhaps everyone knows what CMake is, so I will not bother explaining it. CMake is unpacked under the temporary directory of a runner.
- uses: milliewalky/setup-cmake@v1
This action appends CMake to a temporary PATH file, so--for example--doing this in the root directory of your checked-out project:
(if exist build rmdir /s /q build) && mkdir build && cmake -S . -B build/ && cmake --build build/ --config Release
Should build it just fine.
The scripts and documentation in this project are released under the MIT License