Improve workflow and badges. (#78)

This commit is contained in:
Arthur Sonzogni
2021-03-21 14:08:09 +01:00
committed by GitHub
parent 3a0b2520eb
commit 83fe939332
6 changed files with 80 additions and 7 deletions

27
.github/workflows/windows-msvc.yaml vendored Normal file
View File

@@ -0,0 +1,27 @@
name: Windows MSVC
on:
- pull_request
jobs:
build:
name: Windows MSVC
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: seanmiddleditch/gha-setup-ninja@master
- uses: ilammy/msvc-dev-cmd@v1
- name: Build
run: >
mkdir build;
cd build;
cmake ..
-DCMAKE_CXX_COMPILER="cl"
-DFTXUI_BUILD_TESTS=ON;
cmake --build . --config Release;
- name: Tests
if: ${{ matrix.config.test }}
run: >
cd build;
./tests.exe