tee_morphosis 1.3.1

Lib for parsing, splitting and building tee
Documentation
name: Lint

# on:
#   push:
#     branches:
#       # change for your branch name
#       - main

on:
  push:
    tags:
      - "v*.*.*"

env:
  CARGO_TERM_COLOR: always
  BINARY_NAME: change_me

jobs:
  lint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - name: Install stable Rust
        uses: dtolnay/rust-toolchain@stable
        with:
          components: clippy

      - name: Cache Rust dependencies
        uses: Swatinem/rust-cache@v2.7.7
        with:
          env-vars: "CARGO RUST"
          cache-on-failure: true

      - name: lint
        run: cargo clippy # instruct some packages if needed
      - name: test
        run: cargo test --tests --bins --examples # instruct some packages if needed