unsafe.sizeof: support f32 and u32 #177
Workflow file for this run
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: Pixi checks | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| name: test-${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| env: | |
| SPY_WERROR: true | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - uses: prefix-dev/setup-pixi@v0.9.4 | |
| with: | |
| pixi-version: v0.69.0 | |
| cache: true | |
| - name: Build libspy | |
| run: | | |
| pixi run make-libspy | |
| - name: Check spy build -x | |
| run: | | |
| pixi run spy build -x examples/1_high_level/hello.spy |