mirror of https://github.com/vacp2p/zerokit.git
49 lines
1.2 KiB
YAML
49 lines
1.2 KiB
YAML
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
name: Tests
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v2
|
|
- name: Install stable toolchain
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: stable
|
|
override: true
|
|
- name: Update git submodules
|
|
run: git submodule update --init --recursive
|
|
- name: cargo test
|
|
run: |
|
|
cargo test --release --workspace --exclude rln-wasm
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v2
|
|
- name: Install stable toolchain
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: stable
|
|
override: true
|
|
components: rustfmt, clippy
|
|
- name: Update git submodules
|
|
run: git submodule update --init --recursive
|
|
- name: cargo fmt
|
|
run: cargo fmt --all -- --check
|
|
- name: cargo clippy
|
|
run: |
|
|
(cd multiplier && cargo clippy)
|
|
(cd rln && cargo clippy)
|
|
(cd semaphore && cargo clippy)
|
|
# Currently not treating warnings as error, too noisy
|
|
# -- -D warnings
|