mirror of
https://github.com/TheLartians/ModernCppStarter.git
synced 2025-09-05 16:31:01 +02:00
add standalone workflow
This commit is contained in:
parent
93d0fe795c
commit
bdbdd7700d
2 changed files with 20 additions and 1 deletions
20
.github/workflows/standalone.yml
vendored
Normal file
20
.github/workflows/standalone.yml
vendored
Normal 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/standalone
|
||||
|
||||
- name: run
|
||||
run: ./build/standalone/Greeter
|
Loading…
Add table
Add a link
Reference in a new issue