fix code comment 'argpprase' to 'argparse' #15
This file contains hidden or 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: Quick Test | |
on: | |
push: | |
branches-ignore: [ master, main ] | |
pull_request: | |
branches: [ master, main ] | |
jobs: | |
quick-test: | |
name: Quick Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Quick build with Make | |
run: | | |
make | |
- name: Quick test with Make | |
run: | | |
make test | |
- name: Quick build with CMake | |
run: | | |
cmake -B build | |
cmake --build build | |
- name: Build tests and verify basic functionality | |
run: | | |
cd tests | |
make test_null_help test_callbacks | |
./test_null_help --help | |
./test_callbacks --help |