This repository was archived by the owner on Apr 30, 2026. It is now read-only.
fix: make ray_data() slice-aware — ONE fix instead of per-callsite hacks #228
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: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| build-and-test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - os: ubuntu-latest | |
| target: debug | |
| - os: ubuntu-latest | |
| target: release | |
| - os: macos-latest | |
| target: debug | |
| - os: macos-latest | |
| target: release | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build (${{ matrix.target }}) | |
| run: make ${{ matrix.target }} | |
| - name: Test | |
| run: make test |