Add optional standalone executable directory (#2)

* add standalone executable

* update readme

* add standalone workflow

* fix path
This commit is contained in:
Lars Melchior 2020-04-14 13:59:38 +02:00 committed by GitHub
parent ad1f006762
commit 1dc64084eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 122 additions and 10 deletions

20
.github/workflows/standalone.yml vendored Normal file
View file

@ -0,0 +1,20 @@
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