feat: change from std::endl to '\n' #12
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 the library | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| workflow_dispatch: | |
| env: | |
| CMAKE_GENERATOR: Ninja | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Setup cmake | |
| uses: jwlawson/actions-setup-cmake@v2 | |
| with: | |
| cmake-version: '4.0.x' | |
| - name: Setup C++ | |
| uses: aminya/setup-cpp@v1 | |
| with: | |
| compiler: llvm | |
| ninja: true | |
| - name: Create the build directory | |
| run: mkdir build | |
| - name: Build the project | |
| run: ./scripts/build.sh |