Expand API: BLAS, reductions, statistics, index ops, bitwise; type & FFI fixes #49
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: ArrayFire CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| env: | |
| ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: cachix/install-nix-action@v31 | |
| with: | |
| nix_path: nixpkgs=channel:nixpkgs-unstable | |
| - name: Nix channel --update | |
| run: nix-channel --update | |
| - name: Cabal update | |
| run: nix develop --command bash -c 'cabal update' | |
| - name: Build and run tests | |
| run: nix develop --command bash -c 'cabal test' |