Skip to content

chore(thegraph): bump thegraph crate version to v0.6.0 (#106) #222

chore(thegraph): bump thegraph crate version to v0.6.0 (#106)

chore(thegraph): bump thegraph crate version to v0.6.0 (#106) #222

Workflow file for this run

name: ci
on:
pull_request:
push:
branches: [ main ]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: full
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: rustfmt, clippy
- name: Cache rust build files
uses: Leafwing-Studios/cargo-cache@5edda26afa3d28be5d6ee87d4c69c246e3ee37fb # v1
- name: rustfmt
run: cargo fmt --all -- --check
- name: check (release)
run: cargo check --workspace --all-targets --all-features --release
- name: clippy
run: cargo clippy --workspace --all-targets --all-features -- -D warnings --force-warn deprecated --force-warn dead-code
- name: unit-tests
run: cargo test --workspace --all-features --lib
- name: integration-tests
run: cargo test --workspace --all-features --tests '*'