Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ethomson committed Dec 15, 2023
1 parent a137bc7 commit 3b90a9d
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI Build

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:

jobs:
build:
strategy:
matrix:
platform:
- ubuntu-latest
- macos-latest
- windows-latest

runs-on: ${{ matrix.platform }}

steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Build
run: |
mkdir build
cd build
cmake ..
cmake --build .

0 comments on commit 3b90a9d

Please sign in to comment.