diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8cdcf4c..f61fcc9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,9 @@ jobs: uses: actions/checkout@v2 - name: Configure cmake - run: cmake -B${{github.workspace}}/examples/build -DCMAKE_BUILD_TYPE=${{ matrix.configuration }} + working-directory: ${{github.workspace}}/examples + run: cmake -B${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{ matrix.configuration }} - name: Build with ${{ matrix.compiler }} - run: cmake --build ${{github.workspace}}/examples/build --config ${{ matrix.configuration }} \ No newline at end of file + working-directory: ${{github.workspace}}/examples + run: cmake --build ${{github.workspace}}/build --config ${{ matrix.configuration }} \ No newline at end of file