static_str_ops 0.1.2

A package allows using static strings with non-trivial operations, e.g., `concat!`, `format!`, `call_once`, and more.
Documentation
name: CI

on: [push, pull_request]

concurrency:
  group: ${{ github.repository }}-${{ github.event.number || github.head_ref || github.sha }}-${{ github.workflow }}
  cancel-in-progress: true

jobs:
  check:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        rust: [stable, nightly]
    steps:
      - uses: actions/checkout@v3

      - uses: actions-rs/toolchain@v1
        with:
          profile: minimal
          toolchain: ${{ matrix.rust }}
          override: true
          components: rustfmt, clippy

      - name: Check
        run: |
          cargo fmt --all -- --check
          cargo clippy -- -D warnings
          cargo check

      - name: Unittest
        run: |
          cargo test --lib