Add C# / .NET bindings (OxBitNet) #92
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| shader-sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Check shader sync | |
| run: diff <(find packages/core/src/shaders -name '*.wgsl' -exec basename {} \; | sort) <(find packages/rust/crates/oxbitnet/src/shaders -name '*.wgsl' -exec basename {} \; | sort) && for f in packages/core/src/shaders/*.wgsl; do diff "$f" "packages/rust/crates/oxbitnet/src/shaders/$(basename "$f")"; done | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20, 22, 24, 25] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: npm | |
| - run: npm ci | |
| - run: npx turbo run build | |
| - run: npx turbo run lint | |
| - run: npx turbo run test |