Add network-id
configuration
#2210
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
on: [pull_request] | |
name: Continuous integration | |
jobs: | |
analyze: | |
name: Dusk Analyzer | |
runs-on: core | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: nightly | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: --git https://github.com/dusk-network/cargo-dusk-analyzer | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: dusk-analyzer | |
test_nightly: | |
name: Nightly tests | |
runs-on: core | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
- run: rustup component add rustfmt | |
- run: rustup target add wasm32-unknown-unknown | |
- run: rustup component add rust-src | |
- run: > | |
RUSK_PROFILE_PATH="/var/opt/build-cache" | |
RUSK_KEEP_KEYS="1" | |
RUSK_BUILD_STATE="1" | |
RUSK_FORCE_STATE="1" | |
make test | |
- name: "Clippy check release" | |
env: | |
RUSK_PROFILE_PATH: "/var/opt/build-cache" | |
run: make clippy | |
- name: "Upload Rusk Artifact" | |
uses: actions/upload-artifact@v2 | |
with: | |
name: rusk-artifact | |
path: ./target/release/rusk | |
retention-days: 5 | |
fmt: | |
name: Rustfmt | |
runs-on: core | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
- run: rustup component add rustfmt | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --all -- --check |