mirror of
https://github.com/ETLCPP/etl.git
synced 2026-06-27 21:08:44 +08:00
28 lines
545 B
YAML
28 lines
545 B
YAML
name: CI
|
|
on:
|
|
push:
|
|
branches: [ feature/github-actions-for-windows-compilers ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
|
|
build-visual-studio:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup MSBuild.exe
|
|
uses: warrenbuckley/Setup-MSBuild@v1
|
|
|
|
- name: Build and run
|
|
run: |
|
|
cmake -D BUILD_TESTS=ON ./
|
|
nmake
|
|
./test/etl_tests
|
|
|
|
- name: Save artifacts
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: Testfile
|
|
path: test/etl_tests |