Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jarro2783/cxxopts.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarryd Beck <jarro.2783@gmail.com>2021-10-09 03:56:15 +0300
committerJarryd Beck <jarro.2783@gmail.com>2021-10-09 04:00:45 +0300
commit70b3eb6be42e6d7aa2a00e44c7d9afc2f8e7fb1c (patch)
tree6aa76e6256c17d1d06a8790411163f115667be23
parentd3aa51d555c4ae77db24d0516408ca5ac7e40a6e (diff)
Test actiongithub-build
-rw-r--r--.github/workflows/build.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index e69de29..50df964 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -0,0 +1,23 @@
+name: Build cxxopts
+
+on:
+ push:
+ branches: [ $default-branch ]
+ pull_request:
+ branches: [ $default-branch ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: setup
+ run: mkdir build; cd build
+ - name: cmake
+ run: cmake ..
+ - name: Build
+ run: make -j$(nproc)
+ - name: test
+ run: ctest