Skip to content

feat(alloy): Migrate pool lens to use Alloy #14

feat(alloy): Migrate pool lens to use Alloy

feat(alloy): Migrate pool lens to use Alloy #14

Workflow file for this run

name: Rust
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }}
jobs:
lint:

Check failure on line 14 in .github/workflows/rust.yml

View workflow run for this annotation

GitHub Actions / Rust

Invalid workflow file

The workflow is not valid. .github/workflows/rust.yml (Line: 14, Col: 3): The workflow must contain at least one job with no dependencies.
name: Lint
needs: setup
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Setup
id: setup
uses: ./.github/workflows/default-setup.yml
- name: Install Rust toolchain via rustup
run: |
rustup override set nightly
rustup component add clippy --toolchain nightly
- name: Check linting
run: cargo clippy --all-targets --all-features -- -D warnings
test:
needs: [ setup, lint ]
name: Test
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Setup
id: setup
uses: ./.github/workflows/default-setup.yml
- name: Build
run: cargo build
- name: Run tests
run: cargo test --lib -- --test-threads=1