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