👷 rename workflows

parent cd76f59a
name: Windows name: macOS
on: [push] on: [push]
jobs: jobs:
build: build:
runs-on: windows-latest runs-on: macos-latest
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
......
name: macOS name: Windows
on: [push] on: [push]
jobs: jobs:
build: build:
runs-on: macos-latest runs-on: windows-latest
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: prepare - name: prepare
run: mkdir build run: mkdir build
- name: cmake - name: cmake
run: cd build ; cmake .. run: cd build ; cmake .. -G "Visual Studio 16 2019"
- name: build - name: build
run: make -C build run: make -C build
- name: test - name: test
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment