Skip to content

ci: add CI runner for pull_request (#111) #13

ci: add CI runner for pull_request (#111)

ci: add CI runner for pull_request (#111) #13

Workflow file for this run

on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
name: Plugins
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Check Plugins
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Check PHP plugin
uses: actions-rs/cargo@v1
with:
command: check
args: --manifest-path plugins/php/Cargo.toml
- name: Check Hot Reload plugin
uses: actions-rs/cargo@v1
with:
command: check
args: --manifest-path plugins/hot-reload/Cargo.toml