typo #95
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 | |