feat: add status in README #12
Workflow file for this run
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: Makefile CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Make | |
run: make | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Valgrind | |
run: sudo apt install -y valgrind | |
- name: Make | |
run: make | |
- name: Tests (except CUnit test's) | |
run: make test_all_except_cunit_tests | |
# test: | |
# runs-on: ubuntu-latest | |
# | |
# steps: | |
# - uses: actions/checkout@v3 | |
# | |
# - name: Cunit | |
# run: git clone https://github.com/wpdk/CUnit ; cd CUnit ; make | |
# | |
# - name: Run tests ok | |
# run: make test_ok | |
# | |
# - name: Run all tests | |
# run: make test |