-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci): Update CI to allow the chain-sync-v2 catalyst gateway branc…
…h to build cleanly. (#306) * ci(rust): Cat-Gateway has an unavoidable dependency on open-ssl. Allow for now. * feat(rust): Add a function to make syncing std rust config locally easier. * feat(cspell): Use latest cspell tool, and add a function to clean project words file. * fix(cspell): Missing FUNCTION keyword * fix(docs): spelling * feat(cspell): Add target to clean the spelling list * fix(docs): Cleaned spelling list * feat(mdlint): Bump mdlint version to latest * fix(rust): sync deny.toml across utilities and examples * feat(cat-ci): Add Justfile in root to make running some tasks easier. * fix(rust): Missing FUNCTIOn keyword in sync-std-cfg function * fix(rust): Fix reference to the rust installer package * fix(cspell): Remove duplicate lines from the project dictionary * fix(docs): cleanup duplicates from project dictionary * fix(postgresql): Replace ancient "stable" sqlfluff debian distributes, with latest one. * fix(mithril): Remove mithril snapshots from CI. * style(postgresql): Adjust the sql code format to match requirements.
- Loading branch information
Showing
14 changed files
with
82 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# use with https://github.com/casey/just | ||
# | ||
|
||
# cspell: words prereqs, commitlog | ||
|
||
default: | ||
@just --list --unsorted | ||
|
||
|
||
# Fix and Check Markdown files | ||
check-markdown: | ||
earthly +markdown-check-fix | ||
|
||
# Check Spelling | ||
check-spelling: | ||
earthly +clean-spelling-list | ||
earthly +check-spelling | ||
|
||
# Pre Push Checks - intended to be run by a git pre-push hook. | ||
pre-push: check-markdown check-spelling |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
CREATE TABLE users | ||
( | ||
name VARCHAR PRIMARY KEY, | ||
age INTEGER NOT NULL | ||
name VARCHAR PRIMARY KEY, | ||
age INTEGER NOT NULL | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
CREATE TABLE address | ||
( | ||
name VARCHAR PRIMARY KEY, | ||
address TEXT NOT NULL, | ||
name VARCHAR PRIMARY KEY, | ||
address TEXT NOT NULL, | ||
|
||
FOREIGN KEY (name) REFERENCES users (name) | ||
FOREIGN KEY (name) REFERENCES users (name) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters