summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMouse <mouse07410@users.noreply.github.com>2020-12-28 09:44:30 -0500
committerGitHub <noreply@github.com>2020-12-28 09:44:30 -0500
commit090a6ddbd283307d203fa23ba0555e51bfa8bf9d (patch)
tree0bc4129487fc783bb2a387c329caf4486a127024 /.github
parentef9b62f00a35bafca19a361b51a5c9c0c8813060 (diff)
downloadcryptopp-git-090a6ddbd283307d203fa23ba0555e51bfa8bf9d.tar.gz
Create c-cpp.yml
First attempt to add Github Actions CI
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/c-cpp.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml
new file mode 100644
index 00000000..d802cdb6
--- /dev/null
+++ b/.github/workflows/c-cpp.yml
@@ -0,0 +1,19 @@
+name: C/C++ CI
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ branches: [ master ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: make
+ run: make all
+ - name: make test
+ run: make test