micromap 0.3.0

The fastest alternative to HashMap, for maps smaller than 20 keys
Documentation
# SPDX-FileCopyrightText: Copyright (c) 2023-2026 Yegor Bugayenko
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length
name: bashate
'on':
  push:
    branches:
      - master
  pull_request:
    branches:
      - master
jobs:
  bashate:
    timeout-minutes: 15
    runs-on: ubuntu-24.04
    steps:
      - uses: actions/checkout@v6
      - uses: actions/setup-python@v6
        with:
          python-version: 3.14
      - run: pip install bashate
      - run: |
          readarray -t files < <(find . -name '*.sh')
          bashate -i E006,E003 "${files[@]}"