Update weights (#63) #128
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 | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
build: | |
name: 'Run test and build' | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set-Up | |
run: sudo apt install -y cmake pkg-config libssl-dev git build-essential clang libclang-dev curl | |
- name: Install Rustup | |
run: | | |
curl https://sh.rustup.rs -sSf | sh -s -- -y | |
source ~/.cargo/env | |
rustup default stable | |
rustup update nightly | |
rustup update stable | |
rustup target add wasm32-unknown-unknown --toolchain nightly | |
- name: Run tests | |
run: cargo test --all | |
- name: Build Node | |
run: cargo build --release | |
lint: | |
name: 'Run lints' | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set-Up | |
run: sudo apt install -y cmake pkg-config libssl-dev git build-essential clang libclang-dev curl | |
- name: Install Rustup | |
run: | | |
curl https://sh.rustup.rs -sSf | sh -s -- -y | |
source ~/.cargo/env | |
rustup default stable | |
rustup update nightly | |
rustup update stable | |
rustup target add wasm32-unknown-unknown --toolchain nightly | |
- name: Check Rustfmt | |
run: cargo fmt --all -- --check |