Skip to content

fix(ops/Deploy): don't use absolute path in symlink #1382

fix(ops/Deploy): don't use absolute path in symlink

fix(ops/Deploy): don't use absolute path in symlink #1382

Workflow file for this run

on: [push, pull_request]
name: Fadroma (Rust)
jobs:
#docs:
#name: Rust documentation
#runs-on: ubuntu-latest
#steps:
#- name: Install stable toolchain
#uses: actions-rs/toolchain@v1
#with:
#{
#profile: minimal,
#toolchain: 1.58.1,
#target: wasm32-unknown-unknown,
#override: true,
#}
#- name: Checkout sources
#uses: actions/checkout@v2
#with: { submodules: true }
#- name: Prepare workspace
#run: cp Workspace.toml Cargo.toml
#- uses: Swatinem/rust-cache@v1
#- name: Generate documentation
#run: cargo doc
coverage:
name: Run unit tests and publish coverage report
runs-on: ubuntu-latest
steps:
- name: Install toolchain that works with Tarpaulin
uses: actions-rs/toolchain@v1
with:
{
profile: minimal,
toolchain: stable,
target: wasm32-unknown-unknown,
override: true,
}
- uses: Swatinem/rust-cache@v1
- name: Checkout sources
uses: actions/checkout@v2
with: { submodules: true }
- name: Prepare workspace
run: cp _Cargo.toml Cargo.toml
- name: Run cargo-tarpaulin
uses: actions-rs/[email protected]
with:
version: '0.18.3'
args: '--workspace --ignore-panics --ignore-tests --exclude-files=platforms/* --coveralls ${{secrets.COVERALLS_REPO_TOKEN}} --exclude-files platforms'