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 5518c3d + 66b3cbd commit 962c2e0Copy full SHA for 962c2e0
1 file changed
.github/workflows/build.yml
@@ -56,3 +56,21 @@ jobs:
56
- name: Test
57
working-directory: OP2UtilityTest/
58
run: ../${{env.Platform}}/${{env.Configuration}}/OP2UtilityTest.exe
59
+
60
+ linux:
61
+ strategy:
62
+ fail-fast: false
63
+ matrix:
64
+ compiler: [g++, clang++]
65
+ runs-on: ubuntu-latest
66
+ container:
67
+ image: ghcr.io/outpostuniverse/op2utility:1.2
68
+ env:
69
+ CXX: ${{ matrix.compiler }}
70
71
+ steps:
72
+ - uses: actions/checkout@v6
73
74
+ - run: make
75
+ - run: make test
76
+ - run: make check
0 commit comments