We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 988783f commit 4c50d26Copy full SHA for 4c50d26
.github/workflows/tests.yml
@@ -0,0 +1,23 @@
1
+name: Tests
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ test:
7
8
+ runs-on: ubuntu-16.04
9
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ - name: Build docker image
13
+ run: docker build -t cereal .
14
+ - name: Unit Tests
15
+ run: |
16
+ docker run cereal bash -c "scons --test --asan -j$(nproc) && messaging/test_runner"
17
+ - name: Test ZMQ
18
19
+ docker run cereal bash -c "ZMQ=1 python -m unittest discover ."
20
+ - name: Test MSGQ
21
22
+ docker run cereal bash -c "MSGQ=1 python -m unittest discover ."
23
azure-pipelines.yml
0 commit comments