Skip to content

Upgrade to v1.0.0

Upgrade to v1.0.0 #29

Workflow file for this run

name: Run Coverage
on:
push:
branches:
- main
- milestone-2
jobs:
build-node-template:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Set-Up
run: sudo apt install -y cmake pkg-config libssl-dev git build-essential clang libclang-dev curl protobuf-compiler
- name: Install Rustup
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
source ~/.cargo/env
rustup default stable
rustup update nightly
rustup update stable
rustup target add wasm32-unknown-unknown --toolchain nightly
- name: Run coverage
uses: actions-rs/[email protected]
with:
version: '0.19.1'
args: '--manifest-path ./pallets/fiat-ramps/Cargo.toml -- --test-threads 1'
- name: Upload to codecov.io
uses: codecov/[email protected]
with:
token: ${{secrets.CODECOV_TOKEN}}