Change the help targets in Makefiles to be compatible with BSD sed. #108
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: C CI for GCC | |
on: | |
push: | |
branches: [ "trunk" ] | |
pull_request: | |
branches: [ "trunk" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.4 | |
- name: make | |
run: make | |
- name: compiler-test | |
run: make compiler-test | |
- name: coverage-report | |
run: make -C test/coverage-gcov/ |