luminal 0.2.0

Deep learning at the speed of light.
Documentation
name: Test

on:
  push:
    branches: [ "main" ]
  pull_request:
    branches: [ "main" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  cpu_test:
    name: CPU Tests
    runs-on: ubuntu-latest
    timeout-minutes: 20

    steps:
    - uses: actions/checkout@v3
    - name: Build
      run: cargo build --no-default-features --verbose
    - name: Run tests
      run: cargo test --no-default-features --verbose
#   macos_test:
#     name: MacOS Tests
#     runs-on: macos-13
#     timeout-minutes: 20

#     steps:
#     - uses: actions/checkout@v3
#     - name: Build
#       run: cargo build --verbose
#     - name: Run tests
#       run: cargo test --verbose -- --test-threads 1