update readme #12
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
| on: | |
| push: | |
| jobs: | |
| check: | |
| strategy: | |
| fail-fast: true | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set initial test status | |
| uses: myrotvorets/[email protected] | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| status: pending | |
| context: Test status | |
| - name: Checkout Repo | |
| uses: actions/checkout@v4 | |
| - name: Install node deps and foundry | |
| uses: ./.github/actions/setup_deps | |
| - name: Build contracts | |
| run: | | |
| forge build | |
| - name: Test | |
| run: | | |
| forge test | |
| env: | |
| TENDERLY_KEY: ${{ secrets.TENDERLY_KEY }} | |
| - name: Set initial test status | |
| uses: myrotvorets/[email protected] | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| status: ${{ job.status }} | |
| context: Test status |