Skip to content

Bump semver, @commitlint/is-ignored, @nomiclabs/hardhat-waffle and ethereum-waffle in /solidity #553

Bump semver, @commitlint/is-ignored, @nomiclabs/hardhat-waffle and ethereum-waffle in /solidity

Bump semver, @commitlint/is-ignored, @nomiclabs/hardhat-waffle and ethereum-waffle in /solidity #553

Workflow file for this run

name: Rust tests
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
rust-test:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
steps:
- name: Checkout branch
uses: actions/checkout@v2
- name: Setup toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
- name: Set up Rust caches
uses: actions/cache@v2
id: rust-cache
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
orchestrator/target/
key: ${{ runner.os }}-cargo-${{ hashFiles('orchestrator/Cargo.lock') }}
- name: Run Orchestrator unit tests
run: cd orchestrator && cargo test --all --verbose
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v2
with:
profile: minimal
toolchain: stable
override: true
- name: Run Rust fmt
run: cd orchestrator && cargo fmt
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v2
with:
profile: minimal
toolchain: stable
override: true
- name: Run Carglo Clippy
run: cd orchestrator && cargo clippy