Skip to content

Commit

Permalink
[GH][CI] First Github CI steps
Browse files Browse the repository at this point in the history
Adds initial Github Actions workflow to build the project in its
default build config.
  • Loading branch information
jplehr committed Oct 31, 2024
1 parent dcf2b68 commit 58202ea
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/mcg-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: MetaCG CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: cmake
run: cmake -B build -S .
- name: build
run: cmake --build build --parallel

0 comments on commit 58202ea

Please sign in to comment.