We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4cd5b8e + 291680f commit 08d0441Copy full SHA for 08d0441
.github/workflows/checks.yml
@@ -36,6 +36,34 @@ jobs:
36
aptos move test
37
"
38
39
+ solidity-bridge-tests:
40
+ strategy:
41
+ matrix:
42
+ include:
43
+ - os: ubuntu-22.04
44
+ arch: x86_64
45
+ runs-on: buildjet-8vcpu-ubuntu-2204
46
+
47
+ runs-on: ${{ matrix.runs-on }}
48
49
+ steps:
50
+ - name: Checkout repository
51
+ uses: actions/checkout@v4
52
53
+ - name: Install Aptos CLI
54
+ run: |
55
+ curl -fsSL "https://aptos.dev/scripts/install_cli.py" | python3
56
57
+ - name: Install Nix
58
+ uses: DeterminateSystems/nix-installer-action@main
59
60
+ - name: Run foundry tests
61
62
+ nix develop --command bash -c "
63
+ cd protocol-units/bridge/contracts && \
64
+ forge test --fork-url https://ethereum-sepolia-rpc.publicnode.com -vv
65
+ "
66
67
bridge-eth-movement:
68
strategy:
69
matrix:
0 commit comments