Bump dependencies/std_module from 68be111 to 05e0072
#1220
Workflow file for this run
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: | |
| schedule: | |
| - cron: '27 5 * * *' | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| if: github.event_name != 'schedule' | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| clang_version: [ 'main', '22' ] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: davidstone/cmake_strict_defaults@main | |
| with: | |
| clang_version: ${{ matrix.clang_version }} | |
| nightly: | |
| if: github.event_name == 'schedule' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: davidstone/cmake_strict_defaults@main |