Update CI #23
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
name: Unit and e2e tests | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
checks: | |
name: Run clippy and unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v3 | |
# Maybe I should change toolchain | |
# - name: Install Rust toolchain | |
# uses: Cardinal-Cryptography/github-actions/install-rust-toolchain@v1 | |
- name: Install Rust toolchain | |
run: | | |
rustup show | |
rustup component add rust-src | |
- name: Run cargo fmt | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --all -- --check | |
- name: Run clippy | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
# args: --all-targets -- --no-deps -D warnings (TODO: fix clippy warnings first) | |
- name: Cache Crates | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cargo | |
key: ${{ runner.os }}-rust-${{ hashFiles('rust-toolchain.toml') }} | |
restore-keys: | | |
${{ runner.os }}-rust | |
# - name: Add installing required dependency | |
# run: | | |
# cargo install cargo-dylint dylint-link | |
- name: Check if cargo-contract exists | |
id: check-cargo-contract | |
continue-on-error: true | |
run: cargo contract --version | |
- name: Install Protobuf | |
if: ${{ steps.check-cargo-contract.outcome == 'failure' }} | |
run: | | |
sudo apt-get install -y protobuf-compiler libprotobuf-dev | |
# TODO: cache substrate-contracts-node OR downlaod binary from github release | |
# args: --locked substrate-contracts-node | |
- name: Install substrate-contracts-node | |
if: ${{ steps.check-cargo-contract.outcome == 'failure' }} | |
uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: --force --locked contracts-node | |
- name: Run unit tests | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --features e2e-tests | |
build: | |
name: Build the contract | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v3 | |
- name: Cache Crates | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cargo | |
key: ${{ runner.os }}-contract-build-env-${{ hashFiles('rust-toolchain.toml') }} | |
- name: Install Rust toolchain | |
uses: Cardinal-Cryptography/github-actions/install-rust-toolchain@v1 | |
- name: Install cargo contract | |
uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: --locked cargo-contract | |
- name: Build contract | |
uses: actions-rs/cargo@v1 | |
with: | |
command: contract | |
args: build --release |