CLT tests #6
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: tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
clt-help: | |
name: CLT misc tests | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Prepare manticore-loadDocker image | |
run: | | |
cd test | |
./build.sh | |
- name: Run CLT tests | |
uses: manticoresoftware/[email protected] | |
with: | |
image: manticore-load | |
test_prefix: test/clt-tests/misc/ | |
run_args: --privileged | |
clt-insert: | |
name: CLT basic tests | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Prepare manticore-loadDocker image | |
run: | | |
cd test | |
./build.sh | |
- name: Run CLT tests | |
uses: manticoresoftware/[email protected] | |
with: | |
image: manticore-load | |
test_prefix: test/clt-tests/basic/ | |
run_args: --privileged |