Skip to content
This repository has been archived by the owner on Jan 8, 2025. It is now read-only.

Commit

Permalink
feat: add abigen
Browse files Browse the repository at this point in the history
  • Loading branch information
Eikix committed Nov 22, 2023
1 parent 8034632 commit 3baaec4
Show file tree
Hide file tree
Showing 32 changed files with 276 additions and 593 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:
toolchain: 1.73.0
profile: minimal
override: true
- name: Build Cairo Contracts for Abigen
run: make setup
- uses: Swatinem/rust-cache@v2
- uses: actions-rs/cargo@v1
with:
Expand All @@ -31,6 +33,8 @@ jobs:
override: true
components: rustfmt
- uses: Swatinem/rust-cache@v2
- name: Build Cairo Contracts for Abigen
run: make setup
- uses: actions-rs/cargo@v1
with:
command: fmt
Expand All @@ -48,6 +52,8 @@ jobs:
override: true
components: clippy
- uses: Swatinem/rust-cache@v2
- name: Build Cairo Contracts for Abigen
run: make setup
- uses: actions-rs/cargo@v1
with:
command: clippy
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@ on:
push:
branches: [main]

jobs:
dump:
name: Dump katana state
uses: ./.github/workflows/dump.yml

spell_check:
name: Spell check
uses: ./.github/workflows/spell_check.yml
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@ jobs:
with:
path: ./lib/
key: ${{ runner.os }}-submodules
- name: Build Cairo Contracts for Abigen
run: make setup
# Create dump
- name: Create dump
run: make build-kakarot && make dump-katana
run: make && make dump-katana
- name: Generate code coverage
run: ./scripts/make_with_env.sh test-coverage
- name: Upload coverage to Codecov
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@ broadcast

# ignore genesis.json
.hive

artifacts/
Loading

0 comments on commit 3baaec4

Please sign in to comment.