Add extract-common-text.sh scrpit #2140
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/C++ CI | |
on: | |
push: | |
branches: | |
- main | |
- devel | |
tags-ignore: | |
- '*.*.*' | |
paths-ignore: | |
- ".github/**" | |
- "**/*.adoc" | |
- "**/*.md" | |
- "**/*.txt" | |
- "library.*" | |
- "**/*.asm" | |
- "**/*.inc" | |
- "**/*.hex" | |
- "**/*.s19" | |
- "**/*.s28" | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: build test and run | |
run: cd test; make test | |
- name: build generator | |
run: cd test; make gen | |
- name: build command line interface | |
run: cd cli; make cli |