Merge pull request #46 from apl-ocean-engineering/dev/fix_ci #25
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: CMake build CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| cmake: | |
| name: Build with CMake | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Install dependencies with awalsh128/cache-apt-pkgs-action | |
| uses: awalsh128/cache-apt-pkgs-action@latest | |
| with: | |
| packages: libboost-all-dev libspdlog-dev libfmt-dev | |
| version: 1.0 | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| with: | |
| submodules: recursive | |
| - name: Build Project | |
| uses: threeal/cmake-action@v2.1.0 |