Skip to content

Switch from Bors-NG to GitHub merge queues #388

Switch from Bors-NG to GitHub merge queues

Switch from Bors-NG to GitHub merge queues #388

Workflow file for this run

name: PR
on: pull_request
# Using 16MB stacks for deep test/debug recursion
env:
RUST_MIN_STACK: 16777216
jobs:
check:
name: Check (1.63.0)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/[email protected]
- run: cp ci/compat-Cargo.lock ./Cargo.lock
- run: cargo check --verbose --locked
test:
name: Test (stable)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- run: cargo build --verbose
- run: cargo test --verbose --package rayon
- run: cargo test --verbose --package rayon-core
- run: ./ci/highlander.sh
fmt:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/[email protected]
with:
components: rustfmt
- run: cargo fmt --all --check
done:
name: Complete

Check failure on line 41 in .github/workflows/pr.yaml

View workflow run for this annotation

GitHub Actions / PR

Invalid workflow file

The workflow is not valid. .github/workflows/pr.yaml (Line: 41, Col: 5): Required property is missing: runs-on
needs: [check, test, fmt]
steps:
- run: exit 0