diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 323c60a..7d20e34 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -2,11 +2,11 @@ name: GitHub actions on: push: - branches: [ "**" ] + branches: ["**"] pull_request: - branches: [ "**" ] + branches: ["**"] repository_dispatch: - types: [ "**" ] + types: ["**"] env: BUILD_TYPE: Debug @@ -17,7 +17,7 @@ jobs: build: strategy: matrix: - os: [ ubuntu-latest, macos-latest, windows-latest ] + os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: @@ -56,7 +56,7 @@ jobs: - name: Build unit tests POSIX if: matrix.os != 'windows-latest' run: | - cmake --build build --target unit_tests --parallel 4 + cmake --build build/unit_tests --target unit_tests --parallel 4 - name: Run examples POSIX if: matrix.os != 'windows-latest' @@ -114,7 +114,7 @@ jobs: shell: cmd run: | set PATH=%PATH%;${{env.WIN_LIBOQS_INSTALL_PATH}}\bin - cmake --build build --target unit_tests --parallel 4 + cmake --build build/unit_tests --target unit_tests --parallel 4 - name: Run examples Windows if: matrix.os == 'windows-latest'