Merge pull request #292 from 107-systems/dependabot/github_actions/ac… #626
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 | |
| # See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows | |
| on: | |
| push: | |
| pull_request: | |
| schedule: | |
| # Run every Tuesday at 8 AM UTC | |
| - cron: "0 8 * * TUE" | |
| workflow_dispatch: | |
| repository_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| smoke-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Install CMake | |
| run: sudo apt-get install cmake | |
| - name: Create build directory, run CMake and Make | |
| run: mkdir build && cd build && cmake -DBUILD_EXAMPLES=ON .. && make |