Skip to content

[Feat]: support contracts compiled with version 2.1.0 (#5) #24

[Feat]: support contracts compiled with version 2.1.0 (#5)

[Feat]: support contracts compiled with version 2.1.0 (#5) #24

Workflow file for this run

on: [push]
name: Test
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
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: -- -D warnings
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test