Skip to content

[CI] Fix and switch to GitHub actions #15

[CI] Fix and switch to GitHub actions

[CI] Fix and switch to GitHub actions #15

Workflow file for this run

name: x86-Windows
on:
push:
pull_request:
branches: [ main ]
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
type: [Debug, Release]
steps:
- uses: actions/checkout@v4
- name: Clone GTest
run: git clone https://github.com/google/googletest.git
- name: Build and run
run: |
ls .
mkdir build
cmake -S . -B build/ -DCMAKE_BUILD_TYPE=${{ matrix.type }}
cmake --build build/
ls .
ls build\
build\cpp-tutor.sln
build\cppTutorUT.exe