Skip to content

- updated README.md #56

- updated README.md

- updated README.md #56

Workflow file for this run

name: build-windows
on:
push:
branches: [ master ]
jobs:
build-windows:
runs-on: windows-latest
strategy:
matrix:
python-version: [3.7]
steps:
# Checkout repo
- uses: actions/checkout@v3
# Set up python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# Configure, build and test
- name: configure
run: mkdir build-release;cd build-release;cmake ..
shell: pwsh
- name: build
run: cmake --build build-release --config Release