Skip to content

feat: Added the ability to use the TEACH-ME mode #823

feat: Added the ability to use the TEACH-ME mode

feat: Added the ability to use the TEACH-ME mode #823

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@v4
with:
submodules: recursive
- 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: Install packages (Linux)
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install --assume-yes libudev-dev
- name: Cargo check
run: |
cargo check -p cargo-near
cargo check -p cargo-near-build --all-features
tests:
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest]
steps:
- name: Checkout Sources
uses: actions/checkout@v4
with:
submodules: recursive
- name: "Install stable Rust toolchain"
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
default: true
- name: Install `wasm32-unknown-unknown`
run: rustup target add wasm32-unknown-unknown
- name: Install packages (Linux)
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install --assume-yes libudev-dev
- name: Run tests
run: cargo test --workspace
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v4
with:
submodules: recursive
- name: Check Formatting
run: cargo fmt -- --check
- name: Install packages (Linux)
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install --assume-yes libudev-dev
- name: Check Clippy
run: cargo clippy --tests -- -Dclippy::all
# there're sometimes warnings, which signal, that the generated doc
# won't look as expected, when rendered, and sometimes errors, which will prevent doc from being
# generated at release time altogether.
cargo-doc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: run cargo doc
run: RUSTDOCFLAGS="-D warnings" cargo doc -p cargo-near-build --features build_script
audit:
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Audit Tool
run: cargo install cargo-audit
- name: Run Audit Tool
run: cargo audit