From 0269821a85f15a1c4a02878b6d83568a4a9fdd7e Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Mon, 9 Sep 2024 15:17:41 -0400 Subject: [PATCH] ci(native): add CI configuration --- .github/workflows/native.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/native.yml diff --git a/.github/workflows/native.yml b/.github/workflows/native.yml new file mode 100644 index 000000000..b75752b78 --- /dev/null +++ b/.github/workflows/native.yml @@ -0,0 +1,22 @@ +name: Native C++ + +on: + push: + branches: + - main + tags: + - '*' + pull_request: + branches: + - main + +jobs: + native-build-test-workflow: + runs-on: ubuntu-22.04 + + steps: + - uses: prefix-dev/setup-pixi + + - name: Build and Test ITK-Wasm + run: | + pixi run test-itk-wasm \ No newline at end of file