Skip to content

Workflow file for this run

name: Rust
on:
# triggers when a PR is posted
pull_request:
branches:
- "*"
paths-ignore:
- "**.md"
- "**.plantuml"
- "**.svg"
# triggers when a PR is merged
push:
branches: [develop]
paths-ignore:
- "**.md"
- "**.plantuml"
- "**.svg"
jobs:
build:
env:
RUSTC_BOOTSTRAP: "1"
runs-on: ubuntu-latest
env:

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

View workflow run for this annotation

GitHub Actions / .github/workflows/rust.yml

Invalid workflow file

You have an error in your yaml syntax on line 23
RUSTC_BOOTSTRAP: "1"
steps:
- uses: actions/checkout@v3
- run: cargo build --locked
- run: cargo test --locked
- run: cargo fmt -- --check
- run: cargo clippy --locked -- -D warnings --no-deps