transfer-contract: moves state to the transfer-data contract #2646
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: | |
workflow_dispatch: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
name: Continuous integration | |
jobs: | |
analyze: | |
name: Dusk Analyzer | |
runs-on: core | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dsherret/rust-toolchain-file@v1 | |
- run: cargo install --git https://github.com/dusk-network/cargo-dusk-analyzer | |
- run: cargo dusk-analyzer | |
test_nightly: | |
if: github.event.pull_request.draft == false || github.event_name == 'workflow_dispatch' | |
name: Nightly tests | |
runs-on: core | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dsherret/rust-toolchain-file@v1 | |
- 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@v3 | |
with: | |
name: rusk-artifact | |
path: ./target/release/rusk | |
retention-days: 5 | |
fmt: | |
name: Rustfmt | |
runs-on: core | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dsherret/rust-toolchain-file@v1 | |
- run: cargo fmt --all -- --check |