Add CI with build and linting #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |