Skip to content

Commit

Permalink
ci: make ci check for formatting differences
Browse files Browse the repository at this point in the history
  • Loading branch information
benfdking committed May 9, 2024
1 parent 2ee7fb6 commit 44d0be8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/ISSUE_TEMPLATE/FEATURE-REQUEST.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Feature Request Template
about: "For feature requests. Please search for existing issues first. Also see CONTRIBUTING."
about: 'For feature requests. Please search for existing issues first. Also see CONTRIBUTING.'
---

### Please Describe The Problem To Be Solved
Expand All @@ -14,4 +14,3 @@ A precise description of your preferred solution
<!--
A concise description of your preferred solution
-->

6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
View the [documentation](https://www.quary.dev/docs).

## 🗃️ Supported Databases

<p align="center">
<img src="https://img.shields.io/badge/Amazon%20Redshift-527FFF?style=for-the-badge&logo=Amazon%20Redshift&logoColor=white" alt="Amazon Redshift">
<img src="https://img.shields.io/badge/Google%20BigQuery-4285F4?style=for-the-badge&logo=Google%20Cloud&logoColor=white" alt="Google BigQuery">
Expand All @@ -39,6 +40,7 @@ View the [documentation](https://www.quary.dev/docs).
![quary_core_image](./assets/readme_demo.gif)

## 🏗️ Asset Types in Quary

Define and manage the following asset types as code:

- **Sources:** Define the external data sources that feed into Quary, such as database tables, flat files, or APIs (with DuckDB).
Expand All @@ -54,10 +56,13 @@ Define and manage the following asset types as code:
Quary is a VSCode Extension (Interface) & Rust-based CLI (Core)

#### Extension

The VSCode extension can be installed [here](https://marketplace.visualstudio.com/items?itemName=Quary.quary-extension). Note that it depends on the CLI being installed.

#### CLI

#### Homebrew installation

```
brew install quarylabs/quary/quary
```
Expand All @@ -71,6 +76,7 @@ curl -fsSL https://raw.githubusercontent.com/quarylabs/quary/main/install.sh | b
```

#### Other installations

Other builds are available in the [releases page](https://github.com/quarylabs/quary/releases/latest) to download.

### Usage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ export const runDocumentationOnModel = async (
if (isErr(rootResult)) {
return rootResult
}
const uriPath= vscode.Uri.joinPath(rootResult.value, filePath);
const uriPath = vscode.Uri.joinPath(rootResult.value, filePath)
const document =
await vscode.workspace.openTextDocument(uriPath)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@quary/root",
"scripts": {
"dev:extension": "pnpm --parallel --filter \"quary-extension*\" dev",
"ci": "pnpm fmt && pnpm lint && pnpm build && pnpm test && pnpm build-storybook && pnpm run -r vscode:package",
"ci": "pnpm lint && pnpm build && pnpm test && pnpm build-storybook && pnpm run -r vscode:package",
"build": "pnpm -r run build",
"build-storybook": "pnpm -r run build-storybook",
"build_extension": "pnpm -r --filter \"quary-extension...\" run build && pnpm -r --filter \"quary-extension\" run vscode:package",
Expand Down

0 comments on commit 44d0be8

Please sign in to comment.