fix: sorted out a few consistency things #269
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: Compile all smart contracts | |
| on: push | |
| jobs: | |
| compile: | |
| runs-on: ubuntu-24.04 | |
| container: tonomy/antelope | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Compile demo.tmy | |
| run: ./contracts/demo.tmy/build.sh local | |
| - name: Compile eosio.bios | |
| run: ./contracts/eosio.bios/build.sh local | |
| - name: Compile eosio.boot | |
| run: ./contracts/eosio.boot/build.sh local | |
| - name: Compile eosio.msig | |
| run: ./contracts/eosio.msig/build.sh local | |
| - name: Compile eosio.token | |
| run: ./contracts/eosio.token/build.sh local | |
| - name: Compile eosio.tonomy | |
| run: ./contracts/eosio.tonomy/build.sh local | |
| - name: Compile tonomy | |
| run: ./contracts/tonomy/build.sh local | |
| - name: Compile vesting.tmy | |
| run: ./contracts/vesting.tmy/build.sh local | |
| - name: Compile staking.tmy | |
| run: ./contracts/staking.tmy/build.sh local |