Skip to content

fix code comment 'argpprase' to 'argparse' #15

fix code comment 'argpprase' to 'argparse'

fix code comment 'argpprase' to 'argparse' #15

Workflow file for this run

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