Skip to content

Add CI with build and linting #13

Add CI with build and linting

Add CI with build and linting #13

Workflow file for this run

name: Rust testing and building
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
target: wasm32-unknown-unknown
override: true
- name: Run Clippy
run: |
make rust-lint-${{ matrix.component }}
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.79.0
target: wasm32-unknown-unknown
override: true
- name: Build Near contract
run: |
make rust-build-near