Skip to content

Merge branch 'main' of https://github.com/jafioti/luminal #545

Merge branch 'main' of https://github.com/jafioti/luminal

Merge branch 'main' of https://github.com/jafioti/luminal #545

Workflow file for this run

name: Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
unit_test:
name: Unit Tests
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- name: Run tests
run: rustup update; cargo test --workspace --verbose
clippy:
name: Clippy
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- name: Run clippy
run: rustup update; cargo clippy --all-targets -- -D warnings
fmt:
name: Fmt
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- name: Format
run: cargo fmt --all --check
# macos_test:
# name: MacOS Tests
# runs-on: macos-13
# timeout-minutes: 20
# steps:
# - uses: actions/checkout@v4
# - name: Build
# run: cargo build --verbose
# - name: Run tests
# run: cargo test --verbose -- --test-threads 1