[Fix@parser_mtl] : delete deprecated workflows, point to the correct … #16
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/sonarcloud-github-c-cpp@v1.3 | |
- name: Check if build succeeded | |
run: exit $(($? != 0)) |