Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix
  • Loading branch information
shunsukew committed Feb 16, 2023
commit 73e78b2e75cc84e7a448cd403a439b005d6f77f4
4 changes: 2 additions & 2 deletions .github/workflows/pr-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:
- name: Compile checks
run: |
manifest_paths=(`find uniswap-v2/contracts -type f -name Cargo.toml`)
for path in $manifest_paths; do
cargo contract check --manifest-path $path
for manifest_path in $manifest_paths; do
cargo contract check --manifest-path $manifest_path
done

- name: test
Expand Down