v.0.47.0 corrected #611
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: build | |
on: | |
push: | |
paths-ignore: | |
- "docs/**" | |
- "images/**" | |
- "**.md" | |
# manual trigger | |
workflow_dispatch: { } | |
env: | |
RUST_LOG: "debug" | |
RUST_LOG_SPAN_EVENTS: "new,close" | |
RUST_BACKTRACE: "1" | |
jobs: | |
lint_fmt: | |
name: Lint / Code | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
components: rustfmt, clippy | |
- name: cargo fmt --check | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --check | |
- name: license headers | |
run: | | |
cargo test -p kamu-repo-tools -- license_header | |
- name: clippy | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: --workspace --all-targets -- -D warnings | |
lint_deps: | |
name: Lint / Dependencies | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
- uses: cargo-bins/cargo-binstall@main | |
- run: cargo binstall cargo-deny -y | |
- run: cargo deny check | |
- run: cargo binstall cargo-udeps -y | |
- run: cargo udeps --all-targets | |
test_linux: | |
name: Test / Linux | |
runs-on: ubuntu-latest | |
env: | |
CARGO_FLAGS: --profile ci --features kamu/ingest-ftp | |
NEXTEST_FLAGS: --cargo-profile ci --features kamu/ingest-ftp | |
KAMU_CONTRACTS_DIR: ../../../kamu-contracts | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/checkout@v4 | |
with: | |
repository: kamu-data/kamu-contracts | |
path: kamu-contracts | |
- uses: actions-rs/toolchain@v1 | |
- uses: swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: true | |
- uses: cargo-bins/cargo-binstall@main | |
- name: Install cargo tools | |
run: | | |
cargo binstall cargo-nextest -y --force | |
- name: Install foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Build node | |
run: cargo test ${{ env.CARGO_FLAGS }} --no-run | |
- name: Build contracts | |
working-directory: kamu-contracts | |
run: | | |
npm ci | |
forge build | |
- name: Run tests | |
run: cargo nextest run ${{ env.NEXTEST_FLAGS }} | |
- name: Check git diff | |
run: git diff && git diff-index --quiet HEAD |