Skip to content

Commit

Permalink
add github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinbor85 committed Jun 11, 2024
1 parent cfc8426 commit 0f766ef
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build

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

defaults:
run:
shell: bash

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Clone
uses: actions/checkout@v3
with:
submodules: recursive

- name: Configure
run: cmake -B build .

- name: Build
working-directory: build
run: make

- name: Run Tests
working-directory: build
run: make test

0 comments on commit 0f766ef

Please sign in to comment.