chore: rename to pactus on readme image and some template update (#24) #60
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
name: Coverage and linting | |
jobs: | |
all: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install CapnProto | |
run: sudo apt-get install capnproto | |
- name: Install Rust | |
run: | | |
rustup toolchain install nightly --component llvm-tools-preview rustfmt clippy | |
# Installing wasm32 target for compiling the test-contract | |
rustup toolchain install nightly --target wasm32-unknown-unknown | |
# Compiling the test-contract | |
- name: Compiling test-contract | |
run: | | |
cd test-contract | |
cargo +nightly build --target wasm32-unknown-unknown --release -Z unstable-options --out-dir ./wasm | |
- name: Install cargo-llvm-cov | |
run: curl -LsSf https://github.com/taiki-e/cargo-llvm-cov/releases/latest/download/cargo-llvm-cov-x86_64-unknown-linux-gnu.tar.gz | tar xzf - -C ~/.cargo/bin | |
- name: Generate code coverage | |
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
files: lcov.info | |
fail_ci_if_error: true | |
- name: fmt check | |
run: cargo +nightly fmt --all -- --check | |
- name: Clippy check | |
run: cargo +nightly clippy --all-targets --all-features -- -D warnings |