diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml index 6d82091..3e70833 100644 --- a/.github/workflows/build_windows.yml +++ b/.github/workflows/build_windows.yml @@ -14,13 +14,21 @@ jobs: - uses: actions/checkout@v3 - name: Clone aquamarine repo run: git clone --branch ${{ github.head_ref }} https://github.com/MaksymT17/aquamarine.git + + - name: Install packages + run: | + choco install sqlite --params "/NoTools" + shell: bash + - name: Build artifacts with Cmake run: | - cd aquamarine && + cd aquamarine ./build.sh + shell: bash - name: Run unit tests run: | - cd aquamarine/unit_tests && - ./prepare_build.sh && - ./make_and_run_tests.sh \ No newline at end of file + cd aquamarine/unit_tests + ./prepare_build.sh + ./make_and_run_tests.sh + shell: bash \ No newline at end of file