generated from keep-starknet-strange/alexandria
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ef8180d
commit 05d04d3
Showing
23 changed files
with
360 additions
and
137 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
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,15 +1,21 @@ | ||
name: CI | ||
|
||
permissions: read-all | ||
|
||
on: [pull_request] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: software-mansion/setup-scarb@v1 | ||
with: | ||
scarb-version: "0.7.0" | ||
scarb-version: 0.7.0 | ||
- run: scarb fmt --check | ||
- run: scarb build | ||
- run: scarb test |
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,24 @@ | ||
name: Trunk | ||
|
||
on: [pull_request] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
permissions: read-all | ||
|
||
jobs: | ||
trunk_check: | ||
name: Trunk Check Runner | ||
runs-on: ubuntu-latest | ||
permissions: | ||
checks: write # For trunk to post annotations | ||
contents: read # For repo checkout | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Trunk Check | ||
uses: trunk-io/trunk-action@v1 |
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,27 +1,3 @@ | ||
# Generated by Cargo | ||
# will have compiled files and executables | ||
debug/ | ||
target/ | ||
|
||
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries | ||
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html | ||
#Cargo.lock | ||
|
||
# These are backup files generated by rustfmt | ||
**/*.rs.bk | ||
|
||
# MSVC Windows builds of rustc generate these, which store debugging information | ||
*.pdb | ||
|
||
# Visual Studio Code | ||
.vscode/ | ||
# JetBrains | ||
.idea/ | ||
|
||
# Environment files | ||
.DS_Store | ||
.env | ||
|
||
build | ||
|
||
# Gas snapshots generated with scripts | ||
gas_snapshot.json | ||
target |
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,7 @@ | ||
{ | ||
"recommendations": [ | ||
"starkware.cairo1", | ||
"trunk.io", | ||
"streetsidesoftware.code-spell-checker" | ||
] | ||
} |
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,150 @@ | ||
{ | ||
"cSpell.words": [ | ||
"nightlies", | ||
"scarb", | ||
"stop", | ||
"add", | ||
"mul", | ||
"sub", | ||
"div", | ||
"sdiv", | ||
"mod", | ||
"smod", | ||
"addmod", | ||
"mulmod", | ||
"exp", | ||
"signextend", | ||
"lt", | ||
"gt", | ||
"slt", | ||
"sgt", | ||
"eq", | ||
"iszero", | ||
"and", | ||
"or", | ||
"xor", | ||
"not", | ||
"byte", | ||
"shl", | ||
"shr", | ||
"sar", | ||
"sha3", | ||
"address", | ||
"balance", | ||
"origin", | ||
"caller", | ||
"callvalue", | ||
"calldataload", | ||
"calldatasize", | ||
"calldatacopy", | ||
"codesize", | ||
"codecopy", | ||
"gasprice", | ||
"extcodesize", | ||
"extcodecopy", | ||
"returndatasize", | ||
"returndatacopy", | ||
"extcodehash", | ||
"blockhash", | ||
"coinbase", | ||
"timestamp", | ||
"number", | ||
"difficulty", | ||
"gaslimit", | ||
"chainid", | ||
"selfbalance", | ||
"basefee", | ||
"pop", | ||
"mload", | ||
"mstore", | ||
"mstore8", | ||
"sload", | ||
"sstore", | ||
"jump", | ||
"jumpi", | ||
"pc", | ||
"msize", | ||
"gas", | ||
"jumpdest", | ||
"push0", | ||
"push1", | ||
"push2", | ||
"push3", | ||
"push4", | ||
"push5", | ||
"push6", | ||
"push7", | ||
"push8", | ||
"push9", | ||
"push10", | ||
"push11", | ||
"push12", | ||
"push13", | ||
"push14", | ||
"push15", | ||
"push16", | ||
"push17", | ||
"push18", | ||
"push19", | ||
"push20", | ||
"push21", | ||
"push22", | ||
"push23", | ||
"push24", | ||
"push25", | ||
"push26", | ||
"push27", | ||
"push28", | ||
"push29", | ||
"push30", | ||
"push31", | ||
"push32", | ||
"dup1", | ||
"dup2", | ||
"dup3", | ||
"dup4", | ||
"dup5", | ||
"dup6", | ||
"dup7", | ||
"dup8", | ||
"dup9", | ||
"dup10", | ||
"dup11", | ||
"dup12", | ||
"dup13", | ||
"dup14", | ||
"dup15", | ||
"dup16", | ||
"swap1", | ||
"swap2", | ||
"swap3", | ||
"swap4", | ||
"swap5", | ||
"swap6", | ||
"swap7", | ||
"swap8", | ||
"swap9", | ||
"swap10", | ||
"swap11", | ||
"swap12", | ||
"swap13", | ||
"swap14", | ||
"swap15", | ||
"swap16", | ||
"log_0", | ||
"log_1", | ||
"log_2", | ||
"log_3", | ||
"log_4", | ||
"create", | ||
"call", | ||
"callcode", | ||
"return", | ||
"delegatecall", | ||
"create2", | ||
"staticcall", | ||
"revert", | ||
"invalid", | ||
"selfdestruct" | ||
] | ||
} |
Oops, something went wrong.