Skip to content

Fix repo setup

Fix repo setup #426

Workflow file for this run

name: CI
on:
merge_group:
push:
branches: [main]
pull_request:
branches: ["*"]
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
compile:
name: Compile
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Rustup toolchain install
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
targets: wasm32-unknown-unknown
- name: Run cargo check
run: cd tests && cargo check
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: rustfmt, clippy
- name: Run cargo fmt
run: cd tests && cargo fmt --all -- --check
- name: Run clippy
run: cd tests && cargo clippy --all-targets --all-features -- -D warnings
build-precompiles:
name: "Build precompiles"
runs-on: ubuntu-latest
with:

Check failure on line 52 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 52, Col: 5): Unexpected value 'with'
repository: ['matter-labs/era-test-node']
path: ['submodules/era-test-node']
token: ${{ secrets.GITHUB_AUTH_TOKEN }}
steps:
- name: "Build precompiles"
uses: actions/checkout@v3
- name: "Build precompiles"
run: make build-precompiles