add network stat page #880
Workflow file for this run
This file contains 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: TEST forge | |
on: push | |
jobs: | |
check: | |
name: Test smartcontracts with forge | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: CHECKOUT kredeum nfts | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: INSTALL foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: BUILD forge | |
working-directory: contracts | |
run: forge build | |
- name: TEST forge | |
working-directory: contracts | |
run: forge test -vvv |