Skip to content

AM-66 Enable Win GHA on PR #18

AM-66 Enable Win GHA on PR

AM-66 Enable Win GHA on PR #18

Workflow file for this run

name: Windows build check
on:
pull_request:
branches: [ "master" ]
jobs:
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Clone aquamarine repo
run: git clone --branch ${{ github.head_ref }} https://github.com/MaksymT17/aquamarine.git
shell: bash
- name: Build artifacts with Cmake
run: |
cd aquamarine
./build.sh
shell: bash
- name: Run unit tests
run: |
cd aquamarine/unit_tests
./prepare_build.sh
./make_and_run_tests.sh
shell: bash