Skip to content

removed set royalty, merge trophy with earliest date, set dapp defini… #46

removed set royalty, merge trophy with earliest date, set dapp defini…

removed set royalty, merge trophy with earliest date, set dapp defini… #46

Workflow file for this run

# We could use `@actions-rs/cargo` Action ability to automatically install `cross` tool
# in order to compile our application for some unusual targets.
on:
pull_request:
push:
branches:
- main
name: Compile
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
target:
- wasm32-unknown-unknown
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: ${{ matrix.target }}
override: true
- uses: actions-rs/cargo@v1
with:
use-cross: true
command: build
args: --release --target=${{ matrix.target }}