MyModernCppStarter/.github/workflows/standalone.yml
Lars Melchior 1dc64084eb
Add optional standalone executable directory (#2)
* add standalone executable

* update readme

* add standalone workflow

* fix path
2020-04-14 13:59:38 +02:00

20 lines
280 B
YAML

name: Standalone
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: configure
run: cmake -Hstandalone -Bbuild
- name: build
run: cmake --build build
- name: run
run: ./build/Greeter