orengine-utils 3.1.0

This repository provides utilities for building high-performance applications.
Documentation
name: test

on:
  push:
    branches: [ main ]
  pull_request:

jobs:
  x86:
    name: x86_64 (ubuntu-latest)
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Install Rust + Clippy
        uses: dtolnay/rust-toolchain@stable
        with:
          components: clippy
          toolchain: 1.87.0
      - name: Clippy (x86)
        run: cargo clippy --all-targets --all-features -- -D warnings
      - name: Test (x86) default
        run: cargo test --all-targets -- --test-threads=1
      - name: Test (x86) all features (including no_std)
        run: cargo test --all-targets --all-features -- --test-threads=1