👷 rename workflows

pull/2119/head
Niels Lohmann 2020-05-12 20:30:11 +02:00
parent cd76f59af6
commit ab02b08296
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69
2 changed files with 5 additions and 5 deletions

View File

@ -1,11 +1,11 @@
name: Windows
name: macOS
on: [push]
jobs:
build:
runs-on: windows-latest
runs-on: macos-latest
steps:
- uses: actions/checkout@v1

View File

@ -1,18 +1,18 @@
name: macOS
name: Windows
on: [push]
jobs:
build:
runs-on: macos-latest
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: prepare
run: mkdir build
- name: cmake
run: cd build ; cmake ..
run: cd build ; cmake .. -G "Visual Studio 16 2019"
- name: build
run: make -C build
- name: test