Skip to content

Commit

Permalink
add macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
bradgrantham committed Sep 3, 2024
1 parent 35f6850 commit a7fa371
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,20 @@ on:
branches: [ "main" ]

jobs:
build:
linux-build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: make
run: make CXXFLAGS="-std=c++17 -Wall" serial

macos-build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- name: make
run: make CXXFLAGS="-std=c++17 -Wall" serial

0 comments on commit a7fa371

Please sign in to comment.