Skip to content

release: 0.3.1

release: 0.3.1 #286

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
jobs:
msrv-check:
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest]
steps:
- name: Checkout Sources
uses: actions/checkout@v2
- name: Get MSRV
run: |
RUST_MSRV="$(cat cargo-near/Cargo.toml | sed -n 's/rust-version *= *"\(.*\)"/\1/p')"
echo "RUST_MSRV=$RUST_MSRV" >> $GITHUB_ENV
- name: "Install ${{ env.RUST_MSRV }} toolchain (MSRV)"
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ env.RUST_MSRV }}
default: true
- name: Cargo check
run: cargo check -p cargo-near
tests:
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest]
steps:
- name: Checkout Sources
uses: actions/checkout@v2
# Remove this whole block once nearcore supports Rust 1.70.0+
# https://github.com/near/nearcore/issues/9143
- name: "Install 1.69.0 toolchain"
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.69.0
default: true
- name: Install `wasm32-unknown-unknown`
run: rustup target add wasm32-unknown-unknown
- name: Run tests
run: cargo test --workspace --verbose
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v2
- name: Check Formatting
run: cargo fmt -- --check
- name: Check Clippy
run: cargo clippy --tests -- -Dclippy::all
audit:
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v2
- name: Install Audit Tool
run: cargo install cargo-audit
- name: Run Audit Tool
run: cargo audit --ignore RUSTSEC-2020-0071