Skip to content

Initialize testing for the project #1

Initialize testing for the project

Initialize testing for the project #1

Workflow file for this run

name: Rust testing
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
clippy:
runs-on: ubuntu-latest
strategy:
matrix:
component: [near, omni-relayer]
steps:
- name: Setup SSH
uses: webfactory/ssh-agent@v0.7.0
- uses: actions/checkout@v3
- name: Run Clippy
run: |
cargo clippy --manifest-path ./${{ matrix.component }}/Cargo.toml -- \
-D warnings \
-D clippy::pedantic \
-A clippy::missing_errors_doc \
-A clippy::must_use_candidate