Skip to content

Add CI with build and linting #9

Add CI with build and linting

Add CI with build and linting #9

Workflow file for this run

name: Rust testing
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
clippy:
runs-on: ubuntu-latest
strategy:
matrix:
component: [near]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.79.0
components: clippy
- name: Run Clippy
run: |
make rust-lint-${{ matrix.component }}