Skip to content

Commit

Permalink
feat: add github CI file build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mayerui committed Dec 9, 2024
1 parent e29653f commit 52ceff0
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: C/C++ CI

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

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: cmake configure
run: cmake -Bbuild -S.
- name: cmake build
run: cmake --build build

0 comments on commit 52ceff0

Please sign in to comment.