Skip to content

Use new fixtures in fetcher + add test for tar.gz files #68

Use new fixtures in fetcher + add test for tar.gz files

Use new fixtures in fetcher + add test for tar.gz files #68

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
run-tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Run tests
run: cargo test --lib
test-catalog-examples:
name: Test example inputs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Test Berachain example
run: cargo run --package bbuilder run examples/input_berachain.json --dry-run
- name: Test Polygon example
run: cargo run --package bbuilder run examples/input_polygon.json --dry-run
- name: Test Ethereum example
run: cargo run --package bbuilder run examples/input_ethereum.json --dry-run