From ab02b0829688a812da2c092c7ce496ebf28d6452 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Tue, 12 May 2020 20:30:11 +0200 Subject: [PATCH] :construction_worker: rename workflows --- .github/workflows/macos.yml | 4 ++-- .github/workflows/windows.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index f00d5ff3..1116e1ca 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -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 diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 1116e1ca..ea467fb6 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -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