chore: bump actions/checkout from 5.0.0 to 6.0.0 #220
This file contains hidden or 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: Build | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| build-project: | |
| name: Build Project | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-24.04, windows-2022] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6.0.0 | |
| - name: Configure Project | |
| uses: threeal/cmake-action@v2.1.0 | |
| with: | |
| run-build: false | |
| - name: Build Project | |
| run: cmake --build build --config Release | |
| - name: Install Project | |
| run: cmake --install build --prefix install |