Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
15 changes: 14 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,19 @@ jobs:
working-directory: crates/snforge-scarb-plugin
run: cargo test --release

test-forge-scarb-plugin-compatibility:
name: Test Forge Scarb Plugin Compatibility
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6
- uses: software-mansion/setup-scarb@v1
- uses: software-mansion/setup-universal-sierra-compiler@v1
- name: Run Forge Scarb Plugin tests
working-directory: crates/snforge-scarb-plugin-compatibility
run: cargo test --release

test-cast:
name: Test Cast
runs-on: ubuntu-latest
Expand Down Expand Up @@ -275,7 +288,7 @@ jobs:
- uses: software-mansion/setup-scarb@v1
- name: Check cairo files format
run: |
output=$(find . -type f -name "Scarb.toml" -execdir sh -c '
output=$(find . -type f -name "Scarb.toml" -not -path "*/snforge_std_compatibility/*" -execdir sh -c '
echo "Running \"scarb fmt\" in directory: $PWD"
scarb fmt --check
' \;)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ members = [
"crates/foundry-ui",
]

exclude = ["crates/snforge-scarb-plugin"]
exclude = ["crates/snforge-scarb-plugin", "crates/snforge-scarb-plugin-deprecated"]

[workspace.package]
version = "0.46.0"
Expand Down
Loading
Loading