diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 2d45338..64e1386 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -27,5 +27,5 @@ jobs: - name: testing run: | cd build - cd bin + cd tests ./unit_tests diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 0512142..2c18753 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -30,6 +30,6 @@ jobs: - name: testing run: | cd build - cd bin + cd tests ./unit_tests bash <(curl -s https://codecov.io/bash) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index fb784a1..5e17960 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -27,5 +27,6 @@ jobs: - name: testing run: | cd build - cd bin + cd tests + cd Debug .\unit_tests.exe