Skip to content

Commit

Permalink
Merge pull request #57 from multiversx/proxy-action
Browse files Browse the repository at this point in the history
Added proxy compare workflow
  • Loading branch information
andreiblt1304 authored Jun 20, 2024
2 parents 892993f + 808685b commit 412be8b
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/proxy-compare.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI

on:
push:
branches:
- master
pull_request:

jobs:
proxy_compare:
name: Proxy compare - newly generated vs present in file tree
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
default: true
toolchain: stable
target: wasm32-unknown-unknown

- name: Install prerequisites
run: |
cargo install multiversx-sc-meta
- name: Run proxy compare
run: |
sc-meta all proxy --compare

0 comments on commit 412be8b

Please sign in to comment.