redis-asyncx 0.1.0

An asynchronous Redis client library and a Redis CLI built in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: Check for conventional commit

on:
  pull_request:
    types: [opened, ready_for_review, edited]

concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true

jobs:
  check-cc:
    name: Check for conventional commit
    runs-on: ubuntu-latest
    steps:
      - uses: agenthunt/conventional-commit-checker-action@v2.0.0
        with:
          pr-title-regex: '^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test)(\((\w|-)+\))?(!)?: (.+)$'