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

github.com/dequis/purple-facebook.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author/ <>2021-02-11 18:53:59 +0300
committer/ <>2021-02-11 18:53:59 +0300
commit6fdcf2154521ef7d73cc5a5bef772cbf41e63ff2 (patch)
tree2c96692ca160f0aa9ee2645a07b20615e1d7a47a
parent1a6711f83d62e374ca2bed41fd4ca25b6bc654a2 (diff)
mrow?
-rw-r--r--.github/workflows/ci.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 0000000..7d26471
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,25 @@
+name: CI
+
+on:
+ - pull_request
+ - push
+
+jobs:
+ build:
+ runs-on: ubuntu-20.04
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Dependencies
+ run: |
+ sudo apt-get update -y
+ sudo apt-get install -y --no-install-recommmends clang git make
+
+ - name: purple-facebook
+ run: |
+ CFLAGS="-Werror" .autogen.sh --enable-warnings
+ make all clean
+ - name: scan-build
+ run: |
+ scan-build -k --status-bugs make all clean
+