Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit 4b8ddab

Browse files
committed
merge from main
2 parents 117643c + 3af21ba commit 4b8ddab

40 files changed

+1296
-645
lines changed

.github/workflows/rust-tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,19 +84,19 @@ jobs:
8484
coverage:
8585
runs-on: ubuntu-20.04
8686
steps:
87-
- name: Install Rust
88-
uses: actions-rs/toolchain@v1
89-
with:
90-
toolchain: nightly
91-
override: true
92-
components: rustfmt, clippy
9387
- name: Checkout
9488
uses: actions/checkout@v3
9589
- uses: actions/setup-python@v2
9690
with:
9791
python-version: '3.9'
9892
- name: Deps
9993
run: make deps
94+
- name: Install Rust
95+
uses: actions-rs/toolchain@v1
96+
with:
97+
toolchain: nightly
98+
override: true
99+
components: rustfmt, clippy
100100
- name: Coverage
101101
run: make coverage
102102
- name: Upload coverage to codecov.io

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
# will have compiled files and executables
66
debug/
77
target/
8-
cairo/
8+
cairo1/
9+
cairo2/
910
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
1011
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
1112
#Cargo.lock
@@ -42,6 +43,8 @@ starknet-venv/
4243
cairo_programs/cairo_1_contracts/*.sierra
4344
starknet_programs/cairo1/*.casm
4445
starknet_programs/cairo1/*.sierra
46+
starknet_programs/cairo2/*.casm
47+
starknet_programs/cairo2/*.sierra
4548
default.profraw
4649
**.DS_Store
4750
/scripts/reports

0 commit comments

Comments
 (0)