We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9c5d5e5 + 16250e5 commit df1848dCopy full SHA for df1848d
.github/workflows/ci.yml
@@ -0,0 +1,27 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ build:
9
+ strategy:
10
+ matrix:
11
+ os: [ubuntu-latest]
12
+ compiler: [g++, clang++]
13
+ runs-on: ${{ matrix.os }}
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: Run the tests
17
+ env:
18
+ COMPILER: ${{ matrix.compiler }}
19
+ run: ./build.sh $COMPILER -j4 && cd regression && make test
20
+ lint:
21
+ runs-on: ubuntu-latest
22
23
24
+ - name: Get the latest master
25
+ run: git fetch origin master:master
26
+ - name: Run lint
27
+ run: scripts/run_lint.sh master HEAD
.travis.yml
0 commit comments