Skip to content

feat: enhance feed URL handling and improve node logging #3

feat: enhance feed URL handling and improve node logging

feat: enhance feed URL handling and improve node logging #3

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
- master
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test and Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: wasm32-wasip2
components: rustfmt, clippy
- name: Cache Cargo
uses: Swatinem/rust-cache@v2
- name: Check formatting
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --target "$(rustc -vV | sed -n 's/^host: //p')" --all-targets -- -D warnings

Check failure on line 35 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 35
- name: Test
run: cargo test --target "$(rustc -vV | sed -n 's/^host: //p')"
- name: Build WASM component
run: cargo build --release --target wasm32-wasip2