working: base impl w/ weather app again #7
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: | |
| # push: | |
| # branches: | |
| # - main | |
| # pull_request: | |
| # jobs: | |
| # tests: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: actions/checkout@v3 | |
| # - name: Install Foundry | |
| # uses: onbjerg/foundry-toolchain@v1 | |
| # with: | |
| # version: nightly | |
| # - name: Install deps | |
| # run: forge install | |
| # - name: Run forge tests | |
| # run: forge test | |
| # bindings: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: actions/checkout@v3 | |
| # - name: Install Foundry | |
| # uses: onbjerg/foundry-toolchain@v1 | |
| # with: | |
| # version: nightly | |
| # - name: Pull library deps | |
| # run: forge install | |
| # - name: Check fmt | |
| # run: forge fmt --check | |
| # - name: Build contracts before checking bindings are correct | |
| # run: forge build --sizes | |
| # - name: Check bindings are correct | |
| # run: forge bind --bindings-path ./crates/bindings --crate-name bindings --skip-cargo-toml --alloy |