diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74b45400..621fb8d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,6 +2,10 @@ name: CI on: [push, pull_request] +defaults: + run: + shell: bash + jobs: build: name: ${{ matrix.platform.name }} ${{ matrix.config.name }} @@ -29,13 +33,7 @@ jobs: uses: actions/checkout@v4 - name: Configure - shell: bash - run: cmake -S . -B build -DCMAKE_INSTALL_PREFIX=install ${{matrix.platform.flags}} ${{matrix.config.flags}} + run: cmake -B build ${{matrix.platform.flags}} ${{matrix.config.flags}} - name: Build - shell: bash run: cmake --build build --config Release - - - name: Install - shell: bash - run: cmake --install build --config Release