Skip to content

Move project around, add Cargo.lock, upgrade runtimes to v1.2.4 #30

Move project around, add Cargo.lock, upgrade runtimes to v1.2.4

Move project around, add Cargo.lock, upgrade runtimes to v1.2.4 #30

Workflow file for this run

name: CI
on: [push]
env:
CARGO_TERM_COLOR: always
SKIP_WASM_BUILD: 1
jobs:
run-fmt-and-clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup default stable
- run: rustup component add rustfmt clippy
# - uses: Swatinem/rust-cache@v2
- name: Run fmt
run: cargo fmt --check --manifest-path runtimes/Cargo.toml
run: cargo fmt --check --manifest-path templates/Cargo.toml

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

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 20, Col: 9): 'run' is already defined .github/workflows/ci.yml (Line: 23, Col: 9): 'run' is already defined
- name: Run clippy
run: cargo clippy -q --workspace --no-deps --manifest-path runtimes/Cargo.toml -- -D clippy::pedantic
run: cargo clippy -q --workspace --no-deps --manifest-path templates/Cargo.toml -- -D clippy::pedantic