Use Latest Stable WAVS version, Improve DevEx #746
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Solidity | |
| on: | |
| pull_request: | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| with: | |
| version: stable | |
| - uses: actions/setup-node@v4 | |
| name: Install Node.js | |
| with: | |
| node-version: 21 | |
| - uses: pnpm/action-setup@v4 | |
| name: Install pnpm | |
| - name: Install deps | |
| run: make setup | |
| - name: Run forge build | |
| run: forge build -vvv | |
| - name: Run forge tests | |
| run: forge test -vvv |