Skip to content

Commit

Permalink
Update cicd_test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
alavenant committed Dec 18, 2023
1 parent e2658c4 commit 8d16c1e
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/cicd_test.yml
Original file line number Diff line number Diff line change
@@ -1 +1,33 @@
name: cicd_test

on:
# Run each time some code are push on any branch
push:
branches:
- '**'
paths-ignore:
- 'doc/**'

jobs:

build_and_run_tests:
runs-on: ubuntu-latest

steps:
- name: Checkout branch
uses: actions/checkout@v3

- 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: compil_plugins
run: source ./ci/build.sh

- name: test
run: source ./ci/launch_test.sh

0 comments on commit 8d16c1e

Please sign in to comment.