Afilios/nit 3998 enable erc 20 and erc 721 examples #931
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: mac | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: macos-latest | |
name: macos-test (${{ matrix.toolchain }}) | |
env: | |
CFG_RELEASE_CHANNEL: ${{ matrix.toolchain }} | |
strategy: | |
matrix: | |
toolchain: [1.88.0, nightly-2025-06-26] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Install ${{ matrix.toolchain }} | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
- name: Build and Test | |
run: ./ci/build_and_test.sh |