Skip to content

CI Build on Windows

CI Build on Windows #1

Workflow file for this run

name: CI Build on Windows
on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
- name: Install Conan
run: |
python -m pip install conan
- name: Install dependencies with Conan
run: conan install "libsigcpp/3.0.7" --build=missing
run: conan install "expat/2.6.2" --build=missing

Check failure on line 27 in .github/workflows/ci-windows.yml

View workflow run for this annotation

GitHub Actions / CI Build on Windows

Invalid workflow file

The workflow is not valid. .github/workflows/ci-windows.yml (Line: 27, Col: 7): 'run' is already defined .github/workflows/ci-windows.yml (Line: 28, Col: 7): 'run' is already defined
run: conan install "libuv/1.44.2" --build=missing
- name: Generate Build System
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release
- name: Build
run: cmake --build ${{github.workspace}}/build --config Release -DBUILD_TESTING=On -DENABLE_UV_SUPPORT=On