mirror of
https://github.com/cpm-cmake/CPM.cmake.git
synced 2025-11-16 22:27:41 -05:00
* add mac workflow * rename and add windows and ubuntu workflows * update tests * update tests * update travis
17 lines
246 B
YAML
17 lines
246 B
YAML
name: Windows
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: windows-2019
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: run tests
|
|
run: |
|
|
cmake -Htest -Bbuild/test
|
|
cmake --build build/test --target test-verbose
|