Skip to content

Commit

Permalink
Updated Windows unit testing
Browse files Browse the repository at this point in the history
  • Loading branch information
vsoftco committed Mar 26, 2024
1 parent a2f2f61 commit 44e091b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: GitHub actions

on:
push:
branches: [ "**" ]
branches: ["**"]
pull_request:
branches: [ "**" ]
branches: ["**"]
repository_dispatch:
types: [ "**" ]
types: ["**"]

env:
BUILD_TYPE: Debug
Expand All @@ -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:
Expand Down Expand Up @@ -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'
Expand Down Expand Up @@ -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'
Expand Down

0 comments on commit 44e091b

Please sign in to comment.