mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2025-12-25 23:49:58 +00:00
* fix(ci): add merge queue trigger Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * update docs.yml also Signed-off-by: Ruihang Xia <waynestxia@gmail.com> --------- Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
71 lines
1.6 KiB
YAML
71 lines
1.6 KiB
YAML
on:
|
|
merge_group:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
|
paths:
|
|
- 'docs/**'
|
|
- 'config/**'
|
|
- '**.md'
|
|
- '.dockerignore'
|
|
- 'docker/**'
|
|
- '.gitignore'
|
|
push:
|
|
branches:
|
|
- develop
|
|
- main
|
|
paths:
|
|
- 'docs/**'
|
|
- 'config/**'
|
|
- '**.md'
|
|
- '.dockerignore'
|
|
- 'docker/**'
|
|
- '.gitignore'
|
|
workflow_dispatch:
|
|
|
|
name: CI
|
|
|
|
# To pass the required status check, see:
|
|
# https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks
|
|
|
|
jobs:
|
|
typos:
|
|
name: Spell Check with Typos
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: crate-ci/typos@v1.13.10
|
|
|
|
check:
|
|
name: Check
|
|
if: github.event.pull_request.draft == false
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: 'echo "No action required"'
|
|
|
|
fmt:
|
|
name: Rustfmt
|
|
if: github.event.pull_request.draft == false
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: 'echo "No action required"'
|
|
|
|
clippy:
|
|
name: Clippy
|
|
if: github.event.pull_request.draft == false
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: 'echo "No action required"'
|
|
|
|
coverage:
|
|
if: github.event.pull_request.draft == false
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: 'echo "No action required"'
|
|
|
|
sqlness:
|
|
name: Sqlness Test
|
|
if: github.event.pull_request.draft == false
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: 'echo "No action required"'
|