Skip to content

Commit

Permalink
run CI tests also on macos-latest
Browse files Browse the repository at this point in the history
Signed-off-by: Anjan Roy <[email protected]>
  • Loading branch information
itzmeanjan committed Dec 3, 2023
1 parent 46e6730 commit 7541518
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/test_ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test Dilithium Post-Quantum Digital Signature Scheme using CI
name: Test Dilithium Post-Quantum Digital Signature Scheme

on:
push:
Expand All @@ -8,13 +8,18 @@ on:

jobs:
build:

runs-on: ubuntu-latest
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]

steps:
- uses: actions/checkout@v3
- name: Get CMake
run: sudo apt-get install cmake
# From https://github.com/marketplace/actions/actions-setup-cmake
- name: Setup CMake
uses: jwlawson/[email protected]
with:
cmake-version: 'latest'
- name: Setup Google-Test
run: |
pushd ~
Expand All @@ -28,7 +33,7 @@ jobs:
popd
popd
popd
- name: Execute Tests
- name: Execute Tests on ${{matrix.os}}
run: make -j
- name: Cleanup
run: make clean

0 comments on commit 7541518

Please sign in to comment.