chore: Release #455
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: Rainix CI | |
| on: [push] | |
| jobs: | |
| rainix: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| task: [rainix-rs-test, rainix-rs-artifacts] | |
| include: | |
| # We don't need to do rust static analysis on multiple platforms | |
| - os: ubuntu-latest | |
| task: rainix-rs-static | |
| fail-fast: false | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - uses: DeterminateSystems/nix-installer-action@v4 | |
| - uses: DeterminateSystems/magic-nix-cache-action@v2 | |
| - run: nix develop -c rainix-rs-prelude | |
| - name: Run ${{ matrix.task }} | |
| run: nix develop -c ${{ matrix.task }} | |
| - name: Build JS Bindings | |
| run: nix develop -c build-js-bindings | |
| - name: Run JS Tests | |
| run: nix develop -c test-js-bindings | |
| - name: Test JS Doc Generation | |
| run: nix develop -c js-bindings-docs |