fix: update instantiation of cw721 with onchain metadata template #185
Workflow file for this run
This file contains 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] | |
name: Check Templates | |
jobs: | |
test-generate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
target: wasm32-unknown-unknown | |
override: true | |
profile: minimal | |
- name: Install cargo-generate | |
uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: cargo-generate --features vendored-openssl | |
- name: Test all templates | |
run: ${{ github.workspace }}/.github/scripts/test_generate.sh |