Fix and test mark_points_to_use_for_digital_models_with_new_dimension… #177
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: cicd_test | |
on: | |
# Run each time some code is pushed on any branch | |
push: | |
branches: | |
- '**' | |
paths-ignore: | |
- 'doc/**' | |
jobs: | |
build_and_run_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v4 | |
- name: install cppunit | |
run: sudo apt install -y libcppunit-dev | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
activate-environment: pdal_ign_plugin | |
environment-file: ./environment.yml | |
auto-activate-base: true | |
- name: compile_plugins | |
run: source ./ci/build.sh | |
- name: test | |
run: source ./ci/launch_test.sh |