chore!: remove unsafe std::env::set_var
#908
Workflow file for this run
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: 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: Install packages (Linux) | |
if: runner.os == 'Linux' | |
run: sudo apt-get update && sudo apt-get install --assume-yes libudev-dev | |
- name: run cargo doc | |
run: | | |
RUSTDOCFLAGS="-D warnings" cargo doc --workspace --features cargo-near-build/build_script | |
cargo test --workspace --features cargo-near-build/build_script --doc | |
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 |