feat: added a token factory mint method and acl management for gho di… #37
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
| permissions: | |
| contents: read | |
| name: Examples | |
| on: | |
| pull_request: | |
| merge_group: | |
| branches: | |
| - main | |
| env: | |
| CARGO_TERM_COLOR: always | |
| GITHUB_ACTIONS: true | |
| MOVE_VERSION: 2.1 | |
| COMPILER_VERSION: 2.0 | |
| ARTIFACTS_LEVEL: all | |
| jobs: | |
| compile-examples: | |
| name: Compile All Examples | |
| runs-on: Larger-Github-Runners | |
| timeout-minutes: 60 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Aptos CLI | |
| uses: ./.github/actions/install-aptos-cli | |
| with: | |
| version: "7.7.0" | |
| - name: Run Aptos Compile All Examples | |
| working-directory: examples | |
| run: make compile |