We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a9dace commit 52d77c3Copy full SHA for 52d77c3
.github/workflows/integrate.yml
@@ -0,0 +1,23 @@
1
+name: Integrate
2
+
3
+on: push
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - name: before_install
11
+ run: |
12
+ sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
13
+ sudo apt-get -q update
14
+ sudo apt-get install build-essential git libboost-all-dev cmake libgmp3-dev libssl-dev libsodium-dev libprocps-dev pkg-config gcc-5 g++-5
15
+ - name: before_script
16
17
+ git submodule init && git submodule update
18
+ mkdir build && cd build && cmake ..
19
+ - name: tests
20
21
+ cd build
22
+ make
23
+ make check
.travis.yml
0 commit comments