Skip to content

Added more tests to secret network, and new view methods to snapshot #50

Added more tests to secret network, and new view methods to snapshot

Added more tests to secret network, and new view methods to snapshot #50

Workflow file for this run

name: Rust
on:
pull_request:
branches: [master, main]
merge_group:
push:
branches: ["master"]
concurrency:
group: ci-${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: technote-space/[email protected]
with:
PATTERNS: |
**/**.rs
Cargo.lock
- name: Install latest nightly
if: env.GIT_DIFF
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: false
- name: Install wasm32 toolchain
if: env.GIT_DIFF
run: rustup target add wasm32-unknown-unknown
- name: Install near cli and cargo near
if: env.GIT_DIFF
run: npm i
- name: Build
if: env.GIT_DIFF
run: npm run cook
- name: Clippy
if: env.GIT_DIFF
run: npm run lint
- name: Run tests
if: env.GIT_DIFF
run: npm run test
- uses: actions/upload-artifact@v4
if: env.GIT_DIFF
with:
name: secret-network-contract.tar.gz
path: contracts/secret_contract/contract.wasm.gz
if-no-files-found: error
overwrite: true
- uses: actions/upload-artifact@v4
if: env.GIT_DIFF
with:
name: snapshot-contract
path: target/near/voting_snapshot/*
if-no-files-found: error
overwrite: true