Fix pipeline #3
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: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Wake environment | |
| uses: Ackee-Blockchain/wake-setup-action@0.1.0 | |
| - name: Wake up | |
| run: wake --version | |
| - name: Compile contracts | |
| run: wake compile | |
| - name: Generate pytypes | |
| run: wake up pytypes | |
| - name: Run tests | |
| run: wake test |