Skip to content

chore: Add manifest error messages #961

chore: Add manifest error messages

chore: Add manifest error messages #961

Workflow file for this run

# Rust template: https://github.com/actions/starter-workflows/blob/main/ci/rust.yml
# Resources: https://docs.github.com/en/actions
# Examples: https://github.com/actions/starter-workflows
# Process: make small changes, push them, check the Actions tab on github
# also see templates https://github.com/rust-github/template/tree/main/.github/workflows
name: Lint
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:

Check failure on line 18 in .github/workflows/lint.yaml

View workflow run for this annotation

GitHub Actions / Lint

Invalid workflow file

The workflow is not valid. .github/workflows/lint.yaml (Line: 18, Col: 5): Unexpected value ''
jobs:
setup:
uses: ./.github/workflows/download-circuits.yaml
clippy:
needs: setup
name: clippy
runs-on: macos-latest
strategy:
matrix:
crate:
- notary
- proofs
- client
- client_ios
steps:
- uses: actions/checkout@v4
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: minimal
components: clippy
override: true
- name: Install LLVM and Clang to support 'ring' crate and protobuf
run: |
brew install llvm@18 # https://formulae.brew.sh/formula/llvm#default
echo /opt/homebrew/opt/llvm@18/bin >> $GITHUB_PATH
brew install protobuf
- name: cargo clippy for ${{ matrix.crate }}
run: cargo clippy -p ${{ matrix.crate }}
fmt:
name: fmt project
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- nightly
steps:
- name: checkout repo
uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: rustup component add rustfmt
- run: cargo fmt --all -- --check