Skip to content

Update intergrations_tests README.md #3

Update intergrations_tests README.md

Update intergrations_tests README.md #3

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
env:
BUILD_DIR: ${{ github.workspace}}/vsbuild
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, windows-2022 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Check CMake version
run: cmake --version
- name: Configure CMake
run: |
mkdir "${{ env.BUILD_DIR }}"
cd "${{ env.BUILD_DIR }}"
cmake ..
- name: Build
working-directory: ${{ env.BUILD_DIR }}
run: |
cmake --build . --config Release
- name: Test
working-directory: ${{ env.BUILD_DIR }}
run: ctest -C Release