pyth-crosschain/.github/workflows/pyth-cosmwasm-contract.yml

24 lines
397 B
YAML

name: Pyth CosmWasm Contract
on:
pull_request:
push:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./cosmwasm/contracts/pyth
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose