Skip to content

Commit

Permalink
ci: Fix contracts directory path (#267)
Browse files Browse the repository at this point in the history
Fixes the wrong working directory path in github action files. These
paths changed when the repo was converted into a monorepo in PR #223
  • Loading branch information
ugur-eren authored Dec 2, 2024
1 parent e1eda38 commit 3816db7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/contracts_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: software-mansion/setup-scarb@v1
- name: Check cairo format
run: scarb fmt --check
working-directory: contracts
working-directory: packages/contracts
- name: Build cairo programs
run: scarb build
working-directory: contracts
working-directory: packages/contracts
2 changes: 1 addition & 1 deletion .github/workflows/contracts_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ jobs:
starknet-foundry-version: 0.14.0
- name: Run cairo tests
run: snforge test unit_tests
working-directory: contracts
working-directory: packages/contracts

0 comments on commit 3816db7

Please sign in to comment.