Skip to content

Merge pull request #57 from CosmWasm/improve-serde_json-compatibility… #224

Merge pull request #57 from CosmWasm/improve-serde_json-compatibility…

Merge pull request #57 from CosmWasm/improve-serde_json-compatibility… #224

Workflow file for this run

# Based on https://github.com/actions-rs/example/blob/master/.github/workflows/quickstart.yml
on: [push, pull_request]
name: Basic
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.59.0
target: wasm32-unknown-unknown
override: true
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
args: --locked
env:
RUST_BACKTRACE: 1
RUSTFLAGS: "-D warnings"
- name: Compile to Wasm
uses: actions-rs/cargo@v1
with:
command: wasm
args: --locked
env:
RUST_BACKTRACE: 1
RUSTFLAGS: "-D warnings"
sanity:
name: Sanity
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.59.0
override: true
components: rustfmt, clippy
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets -- -D warnings