Skip to content

feat: update github action ci #18

feat: update github action ci

feat: update github action ci #18

Workflow file for this run

name: Endstone CI (Windows)
on:
push:
branches:
- next
pull_request:
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ windows-2019, windows-2022 ]
python: [ '3.9', '3.10', '3.11', '3.12' ]
build_type: [ Debug, Release ]
name: Build on ${{ matrix.os }} (${{ matrix.build_type }}) for Python ${{ matrix.python }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
cache: 'pip'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install conan cmake ninja
- name: Build with Conan
run: |
conan profile detect --force
conan create . --build=missing -s compiler.cppstd=17 -s build_type=${{ matrix.build_type }}