anygma 0.1.0

anygma makes it easy to define arrays containing different types.
Documentation
name: CI

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v4
    - name: Build
      run: cargo build --verbose
    - name: Clippy
      run: cargo clippy -- -D warnings
    - name: Format
      run: cargo fmt -- --check
    - name: Run tests
      run: cargo test --verbose