Bump hex-literal from 0.3.4 to 0.4.1 #246
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, develop ] | |
pull_request: | |
branches: [ main, develop ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set-Up | |
run: sudo apt install -y git clang curl libssl-dev llvm libudev-dev protobuf-compiler | |
- name: Install Rustup | |
run: | | |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y | |
source ~/.cargo/env | |
rustup default stable | |
rustup update nightly | |
rustup update stable | |
rustup toolchain install nightly | |
rustup target add wasm32-unknown-unknown --toolchain nightly | |
- name: Build | |
run: SKIP_WASM_BUILD= cargo check --all-targets --features runtime-benchmarks | |
- name: Test | |
run: SKIP_WASM_BUILD= cargo test --workspace --features runtime-benchmarks -- --nocapture |