feat(engine): Fix formatting and add new features #18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Libs CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: always() | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: make lib | |
run: | | |
make lib | |
exit $(($? != 0)) | |
- name: SonarCloud Scan for C and C++ | |
uses: SonarSource/[email protected] | |
- name: Check if build succeeded | |
run: exit $(($? != 0)) |