Skip to content

added demo_pip figure #101

added demo_pip figure

added demo_pip figure #101

Workflow file for this run

# basic testing with Microsoft compiler
# uses this: https://github.com/TheMrMilchmann/setup-msvc-dev
# options:
# ( from https://learn.microsoft.com/en-us/cpp/build/reference/compiler-options-listed-alphabetically )
# /EHs Enable C++ exception handling (no SEH exceptions).
# (sorry, can't find what the "c" stands for in "/EHsc", but seems to be ok)
name: CI-testing-msvc
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
job3:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup MSVC Developer Command Prompt
uses: TheMrMilchmann/[email protected]
with:
arch: x64
- name: run msvc single file
run: cl /EHsc misc/test_files/single_file.cpp
- name: run msvc multiple files
run: cl /EHsc misc/test_files/test_multiple.cpp misc/test_files/mylib.cpp