mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-09-26 15:39:12 +00:00
Merge queue Infrastructure in sqlparser-rs (#2007)
Some checks are pending
license / Release Audit Tool (RAT) (push) Waiting to run
Rust / codestyle (push) Waiting to run
Rust / lint (push) Waiting to run
Rust / benchmark-lint (push) Waiting to run
Rust / compile (push) Waiting to run
Rust / docs (push) Waiting to run
Rust / compile-no-std (push) Waiting to run
Rust / test (beta) (push) Waiting to run
Rust / test (nightly) (push) Waiting to run
Rust / test (stable) (push) Waiting to run
Some checks are pending
license / Release Audit Tool (RAT) (push) Waiting to run
Rust / codestyle (push) Waiting to run
Rust / lint (push) Waiting to run
Rust / benchmark-lint (push) Waiting to run
Rust / compile (push) Waiting to run
Rust / docs (push) Waiting to run
Rust / compile-no-std (push) Waiting to run
Rust / test (beta) (push) Waiting to run
Rust / test (nightly) (push) Waiting to run
Rust / test (stable) (push) Waiting to run
This commit is contained in:
parent
cff28334be
commit
dd3342e417
4 changed files with 25 additions and 3 deletions
14
.asf.yaml
14
.asf.yaml
|
@ -36,3 +36,17 @@ github:
|
|||
rebase: false
|
||||
features:
|
||||
issues: true
|
||||
protected_branches:
|
||||
main:
|
||||
required_status_checks:
|
||||
contexts:
|
||||
- "codestyle"
|
||||
- "lint"
|
||||
- "benchmark-lint"
|
||||
- "compile"
|
||||
- "docs"
|
||||
- "compile-no-std"
|
||||
- "test (stable)"
|
||||
- "test (beta)"
|
||||
- "test (nightly)"
|
||||
- "Release Audit Tool (RAT)"
|
||||
|
|
1
.github/workflows/license.yml
vendored
1
.github/workflows/license.yml
vendored
|
@ -23,6 +23,7 @@ on:
|
|||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
merge_group:
|
||||
|
||||
jobs:
|
||||
|
||||
|
|
11
.github/workflows/rust.yml
vendored
11
.github/workflows/rust.yml
vendored
|
@ -17,13 +17,20 @@
|
|||
|
||||
name: Rust
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
# When PR is in the Merge Queue, GitHub will create a temporary branch - but we already have a
|
||||
# CI running because of `merge_group`
|
||||
# https://github.com/orgs/community/discussions/15254
|
||||
branches-ignore:
|
||||
- 'gh-readonly-queue/**'
|
||||
pull_request:
|
||||
merge_group:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
|
||||
codestyle:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
// specific language governing permissions and limitations
|
||||
// under the License.
|
||||
|
||||
//! This module defines
|
||||
//! This module defines:
|
||||
//! 1) a list of constants for every keyword
|
||||
//! 2) an `ALL_KEYWORDS` array with every keyword in it
|
||||
//! This is not a list of *reserved* keywords: some of these can be
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue