Skip to content

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

feat(alloy): Migrate pool lens to use Alloy

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

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:
setup:
uses: ./.github/workflows/default-setup.yml

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

View workflow run for this annotation

GitHub Actions / Rust

Invalid workflow file

The workflow is not valid. In .github/workflows/rust.yml (Line: 15, Col: 11): Error from called workflow shuhuiluo/uniswap-lens-rs/.github/workflows/default-setup.yml@c57a4d35c3f314f9bf8d9dd7f705a57a4afcb473 (Line: 8, Col: 16): Unrecognized named-value: 'runner'. Located at position 1 within expression: runner.os
lint:
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