diff options
| -rw-r--r-- | .github/workflows/darwin.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/darwin.yml b/.github/workflows/darwin.yml index dd578d80..21adf3b3 100644 --- a/.github/workflows/darwin.yml +++ b/.github/workflows/darwin.yml @@ -9,6 +9,9 @@ jobs: - name: Check out code uses: actions/checkout@v1 + - name: Install Mbed TLS + run: brew install mbedtls + - name: Install ninja run: brew install ninja @@ -19,4 +22,4 @@ jobs: run: cd build && ninja - name: Test - run: cd build && ctest --output-on-failure
\ No newline at end of file + run: cd build && ctest --output-on-failure |
