chore(deps): update peter-evans/create-pull-request action to v7.0.9 #419
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 and Test | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Build and Test | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| - name: Install dependencies | |
| uses: ./.github/actions/install-dependencies | |
| - name: Build | |
| run: | | |
| cmake -B build | |
| cmake --build build | |
| - name: Test | |
| run: ctest --test-dir build | |
| - name: Install | |
| run: sudo cmake --install build | |
| - name: Smoke test | |
| run: | | |
| cmake -B build | |
| cmake --build build | |
| ./build/ci-cmake | |
| ./build/ci-pkgconfig | |
| working-directory: ci |