Expose the Runner API to allow 3rd party Procedures. #1337
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Format | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
- dev | |
paths: | |
- ".github/workflows/format.yml" | |
- "**.rs" | |
- "**.toml" | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
project: [engine, engine/runtime, client, derive, utils] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install rustfmt with nightly toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: nightly | |
override: true | |
components: rustfmt | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --manifest-path=${{ matrix.project }}/Cargo.toml --all -- --check |