Skip to content

feat: Add an ability to use real account energy for proxy (#260) #792

feat: Add an ability to use real account energy for proxy (#260)

feat: Add an ability to use real account energy for proxy (#260) #792

Workflow file for this run

name: Check and Test Code
on:
pull_request:
push:
branches: [ "main", "feature/*" ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-code:
# runs-on: ubuntu-20.04
runs-on: public-runners
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Install required packages
run: |
sudo apt-get update &&
sudo apt-get install build-essential git clang curl libssl-dev protobuf-compiler wget unzip -y
- name: Get rustc version from file
run: |
echo "rustc_version=$(cat RUSTC_VERSION)" >> $GITHUB_ENV
# Steps taken from https://github.com/actions/cache/blob/master/examples.md#rust---cargo
- name: Cache cargo registry
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Install toolchain
uses: dtolnay/rust-toolchain@nightly
with:
toolchain: ${{ env.rustc_version }}
components: rustfmt
target: wasm32-unknown-unknown
- name: Check Code
run: cargo check --release
- name: Test Code
run: cargo test