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.
1 parent af5bc99 commit b3febc9Copy full SHA for b3febc9
.github/workflows/pull-request-checks.yaml
@@ -4,6 +4,24 @@ on:
4
branches: [ develop ]
5
6
jobs:
7
+ check-macos-10_15-make-clang:
8
+ runs-on: macos-10.15
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ with:
12
+ submodules: true
13
+ - name: Fetch dependencies
14
+ run: brew install maven flex bison
15
+ - name: Build using Make
16
+ run: |
17
+ make -C src minisat2-download
18
+ make -C src
19
+ make -C unit
20
+ - name: Run unit tests
21
+ run: cd unit; ./unit_tests
22
+ - name: Run regression tests
23
+ run: cd regression; make
24
+
25
check-macos-10_15-cmake-clang:
26
runs-on: macos-10.15
27
steps:
0 commit comments