la-stack 0.4.1

Fast, stack-allocated linear algebra for fixed dimensions
Documentation
name: CI
permissions:
  contents: read
concurrency:
  group: >
    ci-${{ github.workflow }}-${{
      github.event_name == 'pull_request' &&
      github.event.pull_request.number ||
      github.ref
    }}
  cancel-in-progress: true

on:
  push:
    branches:
      - main
  pull_request:
    branches:
      - main

env:
  CARGO_TERM_COLOR: always
  RUST_BACKTRACE: 1
  ACTIONLINT_VERSION: "1.7.10"
  MARKDOWNLINT_VERSION: "0.47.0"
  SHFMT_VERSION: "3.12.0"
  TYPOS_VERSION: "1.43.4"
  UV_VERSION: "0.9.28"

jobs:
  build:
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false # Continue other jobs if one fails
      matrix:
        os:
          - ubuntu-latest
          - macos-latest
          - windows-latest
        include:
          - os: ubuntu-latest
            target: x86_64-unknown-linux-gnu
          - os: macos-latest
            target: x86_64-apple-darwin
          - os: windows-latest
            target: x86_64-pc-windows-msvc

    steps:
      - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

      - name: Install Rust toolchain
        uses: actions-rust-lang/setup-rust-toolchain@2b1f5e9b395427c92ee4e3331786ca3c37afe2d7 # v1.16.0
        with:
          target: ${{ matrix.target }}
          cache: true # Built-in caching
          # toolchain, components, etc. are specified in rust-toolchain.toml

      - name: Install just
        if: matrix.os != 'windows-latest'
        uses: taiki-e/install-action@055f5df8c3f65ea01cd41e9dc855becd88953486 # v2.75.18
        with:
          tool: just

      - name: Install uv (for Python scripts and pytest)
        if: matrix.os != 'windows-latest'
        uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
        with:
          version: ${{ env.UV_VERSION }}

      - name: Install Node.js (for markdownlint)
        if: matrix.os != 'windows-latest'
        uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
        with:
          node-version: "20"

      - name: Install Node.js packages
        if: matrix.os != 'windows-latest'
        run: |
          npm install -g markdownlint-cli@${{ env.MARKDOWNLINT_VERSION }}

      - name: Install typos-cli
        if: matrix.os != 'windows-latest'
        uses: taiki-e/install-action@055f5df8c3f65ea01cd41e9dc855becd88953486 # v2.75.18
        with:
          tool: typos-cli@${{ env.TYPOS_VERSION }}

      - name: Install taplo (for TOML formatting and linting)
        if: matrix.os != 'windows-latest'
        uses: taiki-e/install-action@055f5df8c3f65ea01cd41e9dc855becd88953486 # v2.75.18
        with:
          tool: taplo-cli

      - name: Install actionlint (Linux/macOS)
        if: matrix.os != 'windows-latest'
        run: |
          set -euo pipefail

          # actionlint is published as prebuilt binaries (Go), not a Rust crate.
          # Install directly from rhysd/actionlint releases to avoid cargo-binstall fallback failures.
          # Verify SHA256 checksums from the upstream release for supply-chain hardening.
          OS="$(uname -s)"
          ARCH="$(uname -m)"

          case "$OS" in
            Linux) ACTIONLINT_OS="linux" ;;
            Darwin) ACTIONLINT_OS="darwin" ;;
            *)
              echo "Unsupported OS for actionlint: $OS" >&2
              exit 1
              ;;
          esac

          case "$ARCH" in
            x86_64|amd64) ACTIONLINT_ARCH="amd64" ;;
            arm64|aarch64) ACTIONLINT_ARCH="arm64" ;;
            *)
              echo "Unsupported architecture for actionlint: $ARCH" >&2
              exit 1
              ;;
          esac

          verify_sha256() {
            local checksum_file="$1"
            if command -v sha256sum >/dev/null 2>&1; then
              sha256sum -c "$checksum_file"
            else
              shasum -a 256 -c "$checksum_file"
            fi
          }

          VERSION="${ACTIONLINT_VERSION}"
          TARBALL="actionlint_${VERSION}_${ACTIONLINT_OS}_${ACTIONLINT_ARCH}.tar.gz"
          CHECKSUMS_FILE="actionlint_${VERSION}_checksums.txt"
          BASE_URL="https://github.com/rhysd/actionlint/releases/download/v${VERSION}"

          tmpdir="$(mktemp -d)"
          trap 'rm -rf "$tmpdir"' EXIT

          curl -fsSL "${BASE_URL}/${TARBALL}" -o "$tmpdir/$TARBALL"
          curl -fsSL "${BASE_URL}/${CHECKSUMS_FILE}" -o "$tmpdir/$CHECKSUMS_FILE"

          orig_dir="$PWD"
          cd "$tmpdir"
          awk -v f="$TARBALL" '$NF==f {print; found=1} END {exit found?0:1}' "$CHECKSUMS_FILE" > checksum.txt
          verify_sha256 checksum.txt
          cd "$orig_dir"

          tar -xzf "$tmpdir/$TARBALL" -C "$tmpdir"

          actionlint_path="$(find "$tmpdir" -type f -name actionlint | head -n 1)"
          if [[ -z "$actionlint_path" ]]; then
            echo "actionlint binary not found in $TARBALL" >&2
            exit 1
          fi

          sudo install -m 0755 "$actionlint_path" /usr/local/bin/actionlint

      - name: actionlint -version
        if: matrix.os != 'windows-latest'
        run: actionlint -version

      - name: Install additional tools (Linux)
        if: matrix.os == 'ubuntu-latest'
        run: |
          # Install shellcheck, jq, and yamllint
          sudo apt-get update
          sudo apt-get install -y shellcheck jq yamllint

          # Install shfmt (pinned for CI consistency)
          SHFMT_ASSET="shfmt_v${SHFMT_VERSION}_linux_amd64"
          SHFMT_BASE_URL="https://github.com/mvdan/sh/releases/download/v${SHFMT_VERSION}"

          tmpdir="$(mktemp -d)"
          trap 'rm -rf "$tmpdir"' EXIT

          curl -fsSL \
            "${SHFMT_BASE_URL}/${SHFMT_ASSET}" \
            -o "$tmpdir/${SHFMT_ASSET}"
          curl -fsSL \
            "${SHFMT_BASE_URL}/sha256sums.txt" \
            -o "$tmpdir/sha256sums.txt"

          (
            cd "$tmpdir"
            awk -v f="${SHFMT_ASSET}" '$NF==f {print; found=1} END {exit found?0:1}' sha256sums.txt > checksum.txt
            sha256sum -c checksum.txt
          )

          sudo install -m 0755 "$tmpdir/${SHFMT_ASSET}" /usr/local/bin/shfmt

      - name: Install additional tools (macOS)
        if: matrix.os == 'macos-latest'
        run: |
          # Install shellcheck, jq, and yamllint via Homebrew
          brew install shellcheck jq yamllint

          # Install shfmt (pinned for CI consistency with Linux)
          SHFMT_ARCH="amd64"
          if [[ "$(uname -m)" == "arm64" ]]; then
            SHFMT_ARCH="arm64"
          fi

          SHFMT_ASSET="shfmt_v${SHFMT_VERSION}_darwin_${SHFMT_ARCH}"
          SHFMT_BASE_URL="https://github.com/mvdan/sh/releases/download/v${SHFMT_VERSION}"

          tmpdir="$(mktemp -d)"
          trap 'rm -rf "$tmpdir"' EXIT

          curl -fsSL \
            "${SHFMT_BASE_URL}/${SHFMT_ASSET}" \
            -o "$tmpdir/${SHFMT_ASSET}"
          curl -fsSL \
            "${SHFMT_BASE_URL}/sha256sums.txt" \
            -o "$tmpdir/sha256sums.txt"

          (
            cd "$tmpdir"
            awk -v f="${SHFMT_ASSET}" '$NF==f {print; found=1} END {exit found?0:1}' sha256sums.txt > checksum.txt
            shasum -a 256 -c checksum.txt
          )

          sudo install -m 0755 "$tmpdir/${SHFMT_ASSET}" /usr/local/bin/shfmt

      - name: Run CI checks (Linux/macOS)
        if: matrix.os != 'windows-latest'
        run: just ci

      - name: Build and test (Windows)
        if: matrix.os == 'windows-latest'
        run: |
          cargo build --verbose --all-targets
          cargo test --lib --verbose
          cargo test --doc --verbose
          cargo test --tests --verbose
          cargo test --features exact --verbose