Skip to content

Commit

Permalink
Tests updated
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiandeorowicz authored and agudys committed Jul 8, 2024
1 parent 795930a commit 37723be
Showing 1 changed file with 18 additions and 8 deletions.
26 changes: 18 additions & 8 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,23 @@ on:
workflow_dispatch:

jobs:

linux-test:
name: Linux test
strategy:
fail-fast: false
matrix:
compiler: [g++-11]
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
submodules: recursive

- name: make
run: |
git submodule init
git submodule update
make
make -j CXX=${{matrix.compiler}}
- name: predict (out dir)
run: |
Expand All @@ -40,13 +45,18 @@ jobs:
macos-build:
name: macOS test
runs-on: macOS-latest
strategy:
fail-fast: false
matrix:
compiler: [g++-11]
runs-on: macOS-12

steps:
- uses: actions/checkout@v2
with:
submodules: recursive

- name: make
run: |
git submodule init
git submodule update
make
make -j CXX=${{matrix.compiler}}

0 comments on commit 37723be

Please sign in to comment.