Skip to content

Commit

Permalink
Added github workflow to build the project in Ubuntu and Windows (#46)
Browse files Browse the repository at this point in the history
* added .gitignore

* Added github workflow to build the project in Ubuntu and Windows (#1)

---------

Co-authored-by: Gonçalo Almeida <Goncalo.Almeida@ctw.bmwgroup.com>
  • Loading branch information
goncaloalmeida and Gonçalo Almeida authored Oct 30, 2023
1 parent e3818cb commit c4351ee
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: C/C++ CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
configs: [Release]

steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build project
uses: nicledomaS/cmake_build_action@v1.4
with:
config: ${{ matrix.configs }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
!.git/workflows/*

0 comments on commit c4351ee

Please sign in to comment.