logix-type 0.11.2

Provides the `LogixType` trait and the parser for `.logix` files, aimed at enabling easy-to-read-and-write configurations for `logix`.
Documentation
name: Rust

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v4

    - uses: logix-tool/github-actions/cargo-deny@main
      with:
          token: ${{ secrets.READ_PUBLIC_TOKEN }}

    - uses: logix-tool/github-actions/cargo-semver-checks@main
      with:
          token: ${{ secrets.READ_PUBLIC_TOKEN }}

    - name: Run linters
      run: |
          cargo xtask lints

    - name: Run build
      run: |
          cargo xtask build-all

    - name: Run checks
      run: |
          cargo xtask all-checks

    - name: Run tests
      run: |
          cargo xtask all-tests